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