Click or drag to resize

DoubleUpperTriMatrixAddition(Double, DoubleUpperTriMatrix) Operator

Adds a scalar and an upper triangular matrix.

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

Parameters

s  Double
A scalar.
A  DoubleUpperTriMatrix
an upper triangular matrix.

Return Value

DoubleUpperTriMatrix
an upper triangular matrix B where B[i,j] = s + A[i,j].
See Also