Click or drag to resize

DoubleLowerTriMatrixDivide(DoubleLowerTriMatrix, Double) Method

Divide a lower triangular matrix by a scalar.

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