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

Parameters

m
Type: array<System..::..Double,2>[,](,)[,][,]
Die Matrix.
v
Type: array<System..::..Double>[]()[][]
Der Spalten-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