ComplexMatrixMultiply(ComplexMatrix, ComplexMatrix) Operator |
Matrix multiplication.
Namespace: DotNumerics.LinearAlgebraAssembly: DWSIM.MathOps.DotNumerics (in DWSIM.MathOps.DotNumerics.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax public static ComplexMatrix operator *(
ComplexMatrix A,
ComplexMatrix B
)
Public Shared Operator * (
A As ComplexMatrix,
B As ComplexMatrix
) As ComplexMatrix
Request Example
View SourceParameters
- A ComplexMatrix
- The left side matrix of the multiplication operator.
- B ComplexMatrix
- The right side matrix of the multiplication operator.
Return Value
ComplexMatrixA matrix that represents the result of the matrix multiplication.
See Also