Click or drag to resize

DoubleUpperTriMatrixAdd(DoubleUpperTriMatrix, Double) Method

Adds an upper triangular matrix and a scalar.

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

Parameters

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

Return Value

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