[Diese Dokumentation ist noch nicht fertig und kann sich bis zur entgültigen Version noch ändern.]
Assembly: DataTypesAndTools (in DataTypesAndTools.dll) Version: 1.3.4679.19814 (1.3.0.0)
Berechnet die Inverse für eine Matrix.
Namespace: DynamicNode.Tools.MathematicsAssembly: DataTypesAndTools (in DataTypesAndTools.dll) Version: 1.3.4679.19814 (1.3.0.0)
Syntax
C# |
---|
public static float[,] Invert( float[,] m ) |
Visual Basic |
---|
Public Shared Function Invert ( _ m As Single(,) _ ) As Single(,) |
F# |
---|
static member Invert : m:float32[,] -> float32[,] |
Parameters
- m
- Type: array<System..::..Single,2>[,](,)[,][,]
Die Matrix.
Return Value
Die invertierte Matrix.
Exceptions
Exception | Condition |
---|---|
System..::..NotSupportedException | Wird geworfen, wenn die Größe der Matrix nicht unterstützt wird. |
System..::..ArgumentException | Wird geworfen, wenn die übergebene Matrix nicht invertierbar ist. |