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