Click or drag to resize

DoubleLowerTriMatrixMultiply(Double, DoubleLowerTriMatrix) Method

Multiply a scalar and a lower triangular matrix.

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

Parameters

s  Double
A scalar.
A  DoubleLowerTriMatrix
A lower triangular matrix.

Return Value

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