Version: Unity 6.5 Alpha (6000.5)
LanguageEnglish
  • C#

math.determinant

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Submission failed

For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

Declaration

public static double determinant(double2x2 m);

Parameters

Parameter Description
m Matrix to use when computing determinant.

Returns

double The determinant of the matrix.

Description

Returns the determinant of a double2x2 matrix.


Declaration

public static double determinant(double3x3 m);

Parameters

Parameter Description
m Matrix to use when computing determinant.

Returns

double The determinant of the matrix.

Description

Returns the determinant of a double3x3 matrix.


Declaration

public static double determinant(double4x4 m);

Parameters

Parameter Description
m Matrix to use when computing determinant.

Returns

double The determinant of the matrix.

Description

Returns the determinant of a double4x4 matrix.


Declaration

public static float determinant(float2x2 m);

Parameters

Parameter Description
m Matrix to use when computing determinant.

Returns

float The determinant of the matrix.

Description

Returns the determinant of a float2x2 matrix.


Declaration

public static float determinant(float3x3 m);

Parameters

Parameter Description
m Matrix to use when computing determinant.

Returns

float The determinant of the matrix.

Description

Returns the determinant of a float3x3 matrix.


Declaration

public static float determinant(float4x4 m);

Parameters

Parameter Description
m Matrix to use when computing determinant.

Returns

float The determinant of the matrix.

Description

Returns the determinant of a float4x4 matrix.


Declaration

public static int determinant(int2x2 m);

Parameters

Parameter Description
m Matrix to use when computing determinant.

Returns

int The determinant of the matrix.

Description

Returns the determinant of a int2x2 matrix.


Declaration

public static int determinant(int3x3 m);

Parameters

Parameter Description
m Matrix to use when computing determinant.

Returns

int The determinant of the matrix.

Description

Returns the determinant of a int3x3 matrix.


Declaration

public static int determinant(int4x4 m);

Parameters

Parameter Description
m Matrix to use when computing determinant.

Returns

int The determinant of the matrix.

Description

Returns the determinant of a int4x4 matrix.