[Diese Dokumentation ist noch nicht fertig und kann sich bis zur entgültigen Version noch ändern.]
Führt eine Multiplikation zwischen einer Matrix und einem Vektor durch.

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

Syntax

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

Parameters

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

Return Value

Der Ergebnisvektor.

Exceptions

ExceptionCondition
System..::..ArgumentExceptionWird geworfen, wenn die Dimensionen der Matrix nicht zu der Länge des Vektors passen.

See Also