Click or drag to resize

DoubleUpperTriMatrixMultiply(DoubleUpperTriMatrix, Double) Method

Multiply an upper triangular matrix and a scalar.

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