ILNumerics Ultimate VS

ILMathmultiply Method (InArraycomplex, InArraycomplex)

ILNumerics Ultimate VS Documentation
ILNumerics - Technical Application Development
Matrix multiplication for general matrices (2D).

[ILNumerics Computing Engine]

Namespace:  ILNumerics
Assembly:  ILNumerics.Computing (in ILNumerics.Computing.dll) Version: 5.5.0.0 (5.5.7503.3146)
Syntax

public static RetArray<complex> multiply(
	InArray<complex> A,
	InArray<complex> B
)

Parameters

A
Type: ILNumericsInArraycomplex
Input matrix A.
B
Type: ILNumericsInArraycomplex
Input matrix B.

Return Value

Type: RetArraycomplex
Matrix of size A.S[0] x B.S[1] with result of multiplying the matrices A and B.
Exceptions

ExceptionCondition
ArgumentExceptionIf at least one of A or B is not a matrix or does not have a matching shape.
Remarks

Both arrays must be matrices with matching dimension length. This is: the number of rows of B must equal the number of columns of A.

The multiplication will be carried out inside optimized native code, if possible. Otherwise, an optimized, blocked, managed version is used.

Be prepared that this function may alter the storage order (StorageOrder) of A and/or B without notice.

[ILNumerics Computing Engine]

See Also

Reference