ComplexMatrixMultiply(Complex, ComplexMatrix) Operator |
complex-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 *(
Complex c,
ComplexMatrix B
)
Public Shared Operator * (
c As Complex,
B As ComplexMatrix
) As ComplexMatrix
Request Example
View SourceParameters
- c Complex
- The left side scalar of the multiplication operator.
- B ComplexMatrix
- The right side matrix of the multiplication operator.
Return Value
ComplexMatrixA matrix that represents the result of the multiplication.
See Also