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