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