[Diese Dokumentation ist noch nicht fertig und kann sich bis zur entgültigen Version noch ändern.]
Führt eine Matrixmultiplikation zwischen zwei Matrizen 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[,] a,
	double[,] b
)
Visual Basic
Public Shared Function Multiply ( _
	a As Double(,), _
	b As Double(,) _
) As Double(,)
F#
static member Multiply : 
        a:float[,] * 
        b:float[,] -> float[,] 

Parameters

a
Type: array<System..::..Double,2>[,](,)[,][,]
Die Matrix 1.
b
Type: array<System..::..Double,2>[,](,)[,][,]
Die Matrix 2.

Return Value

Die Ergebnismatrix.

Exceptions

ExceptionCondition
System..::..ArgumentExceptionWird geworfen, wenn die Dimensionen der Matrizen nicht kompatibel sind.

See Also