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

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

Syntax

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

Parameters

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

Return Value

Der Ergebnisvektor.

Exceptions

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

See Also