Click or drag to resize

FloatLowerTriMatrixDivide(FloatLowerTriMatrix, Single) Method

Divide a lower triangular matrix by a scalar.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public static FloatLowerTriMatrix Divide(
	FloatLowerTriMatrix A,
	float s
)

Parameters

A  FloatLowerTriMatrix
A lower triangular matrix.
s  Single
A scalar.

Return Value

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