[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)
Führt eine Multiplikation zwischen einem Zeilen-Vektor und einer Matrix durch.
Namespace: DynamicNode.Tools.MathematicsAssembly: DataTypesAndTools (in DataTypesAndTools.dll) Version: 1.3.4679.19814 (1.3.0.0)
Syntax
C# |
---|
public static float[] Multiply( float[] v, float[,] m ) |
Visual Basic |
---|
Public Shared Function Multiply ( _ v As Single(), _ m As Single(,) _ ) As Single() |
F# |
---|
static member Multiply : v:float32[] * m:float32[,] -> float32[] |
Parameters
- v
- Type: array<System..::..Single>[]()[][]
Der Zeilen-Vektor.
- m
- Type: array<System..::..Single,2>[,](,)[,][,]
Die Matrix.
Return Value
Der Ergebnisvektor.
Exceptions
Exception | Condition |
---|---|
System..::..ArgumentException | Wird geworfen, wenn die Dimensionen der Matrix nicht zu der Länge des Vektors passen. |