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