SparseMatrixAddition Operator |
Adds two matrices together and returns the results.
Namespace: Altaxo.Calc.LinearAlgebra.ComplexAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax public static SparseMatrix operator +(
SparseMatrix leftSide,
SparseMatrix rightSide
)
Parameters
- leftSide SparseMatrix
- The left matrix to add.
- rightSide SparseMatrix
- The right matrix to add.
Return Value
SparseMatrixThe result of the addition.
Exceptions Remarks This 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