Click or drag to resize

DoubleLowerTriMatrixMultiply(DoubleLowerTriMatrix, Double) Operator

Multiply a lower triangular matrix and a scalar.

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

Parameters

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

Return Value

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