[Diese Dokumentation ist noch nicht fertig und kann sich bis zur entgültigen Version noch ändern.]
Ermittelt die Determinate für eine Matrix.

Namespace: DynamicNode.Tools.Mathematics
Assembly: DataTypesAndTools (in DataTypesAndTools.dll) Version: 1.3.4679.19814 (1.3.0.0)

Syntax

C#
public static float Det(
	float[,] m
)
Visual Basic
Public Shared Function Det ( _
	m As Single(,) _
) As Single
F#
static member Det : 
        m:float32[,] -> float32 

Parameters

m
Type: array<System..::..Single,2>[,](,)[,][,]
Die Matrix.

Return Value

Die Determinante.

Exceptions

ExceptionCondition
System..::..NotSupportedExceptionWird geworfen, wenn die Größe der Matrix nicht unterstützt wird.

See Also