[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 double Det(
	double[,] m
)
Visual Basic
Public Shared Function Det ( _
	m As Double(,) _
) As Double
F#
static member Det : 
        m:float[,] -> float 

Parameters

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

Return Value

Die Determinante.

Exceptions

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

See Also