Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


determinant

Returns the determinant of a double2x2 matrix.
Read time 2 minutesLast updated 10 days ago

Definition

determinant(double2x2)

Returns the determinant of a double2x2 matrix.
public static double determinant(double2x2 m)

Parameters

Matrix to use when computing determinant.

Returns

Type

Description

doubleThe determinant of the matrix.

determinant(double3x3)

Returns the determinant of a double3x3 matrix.
public static double determinant(double3x3 m)

Parameters

Matrix to use when computing determinant.

Returns

Type

Description

doubleThe determinant of the matrix.

determinant(double4x4)

Returns the determinant of a double4x4 matrix.
public static double determinant(double4x4 m)

Parameters

Matrix to use when computing determinant.

Returns

Type

Description

doubleThe determinant of the matrix.

determinant(float2x2)

Returns the determinant of a float2x2 matrix.
public static float determinant(float2x2 m)

Parameters

Matrix to use when computing determinant.

Returns

Type

Description

floatThe determinant of the matrix.

determinant(float3x3)

Returns the determinant of a float3x3 matrix.
public static float determinant(float3x3 m)

Parameters

Matrix to use when computing determinant.

Returns

Type

Description

floatThe determinant of the matrix.

determinant(float4x4)

Returns the determinant of a float4x4 matrix.
public static float determinant(float4x4 m)

Parameters

Matrix to use when computing determinant.

Returns

Type

Description

floatThe determinant of the matrix.

determinant(int2x2)

Returns the determinant of a int2x2 matrix.
public static int determinant(int2x2 m)

Parameters

Matrix to use when computing determinant.

Returns

Type

Description

intThe determinant of the matrix.

determinant(int3x3)

Returns the determinant of a int3x3 matrix.
public static int determinant(int3x3 m)

Parameters

Matrix to use when computing determinant.

Returns

Type

Description

intThe determinant of the matrix.

determinant(int4x4)

Returns the determinant of a int4x4 matrix.
public static int determinant(int4x4 m)

Parameters

Matrix to use when computing determinant.

Returns

Type

Description

intThe determinant of the matrix.