Click or drag to resize

DoubleLowerTriMatrixDivision(DoubleLowerTriMatrix, Double) Operator

Divide a lower triangular matrix by 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