MatrixTSubtraction(MatrixT, MatrixT) Operator |
Subtracts two matrices together and returns the results.
Namespace: Altaxo.Calc.LinearAlgebraAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3261.0 (4.8.3261.0)
Syntaxpublic static Matrix<T> operator -(
Matrix<T> leftSide,
Matrix<T> rightSide
)
Parameters
- leftSide MatrixT
- The left matrix to subtract.
- rightSide MatrixT
- The right matrix to subtract.
Return Value
MatrixTThe result of the subtraction.
Exceptions
RemarksThis operator will allocate new memory for the result. It will
choose the representation of either leftSide or rightSide depending on which
is denser.
See Also