Click or drag to resize

FloatLowerTriMatrixAddition(Single, FloatLowerTriMatrix) Operator

Adds a scalar and a lower triangular matrix.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public static FloatLowerTriMatrix operator +(
	float s,
	FloatLowerTriMatrix A
)

Parameters

s  Single
A scalar.
A  FloatLowerTriMatrix
A lower triangular matrix.

Return Value

FloatLowerTriMatrix
A lower triangular matrix B where B[i,j] = s + A[i,j].
See Also