MatrixTAddition(MatrixT, T) Operator |
Adds a scalar to each element of the matrix.
Namespace: Altaxo.Calc.LinearAlgebraAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax public static Matrix<T> operator +(
Matrix<T> leftSide,
T rightSide
)
Parameters
- leftSide MatrixT
- The left matrix to add.
- rightSide T
- The scalar value to add.
Return Value
MatrixTThe result of the addition.
Exceptions Remarks This operator will allocate new memory for the result. It will
choose the representation of the provided matrix.
See Also