DenseMatrixSubtraction Operator |
Subtracts two matrices together and returns the results.
Namespace: Altaxo.Calc.LinearAlgebra.SingleAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3261.0 (4.8.3261.0)
Syntaxpublic static DenseMatrix operator -(
DenseMatrix leftSide,
DenseMatrix rightSide
)
Parameters
- leftSide DenseMatrix
- The left matrix to subtract.
- rightSide DenseMatrix
- The right matrix to subtract.
Return Value
DenseMatrixThe result of the addition.
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