MatrixMultiply(Double, Matrix) Operator |
Scalar-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 Matrix operator *(
double s,
Matrix A
)
Public Shared Operator * (
s As Double,
A As Matrix
) As Matrix
Request Example
View SourceParameters
- s Double
- The left side scalar of the multiplication operator.
- A Matrix
- The right side matrix of the multiplication operator.
Return Value
MatrixA matrix that represents the result of the multiplication.
See Also