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