Click or drag to resize

DoubleUpperTriMatrixSubtract(Double, DoubleUpperTriMatrix) Method

Subtracts an upper triangular matrix from a scalar.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public static DoubleUpperTriMatrix Subtract(
	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