|  | FloatLowerTriMatrixDivide(FloatLowerTriMatrix, Single) Method | 
            Divide a lower triangular matrix by a scalar.
            
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
 Syntax
Syntaxpublic static FloatLowerTriMatrix Divide(
	FloatLowerTriMatrix A,
	float s
)
Public Shared Function Divide ( 
	A As FloatLowerTriMatrix,
	s As Single
) As FloatLowerTriMatrix
public:
static FloatLowerTriMatrix^ Divide(
	FloatLowerTriMatrix^ A, 
	float s
)
static member Divide : 
        A : FloatLowerTriMatrix * 
        s : float32 -> FloatLowerTriMatrix Parameters
- A  FloatLowerTriMatrix
- A lower triangular matrix.
- s  Single
- A scalar.
Return Value
FloatLowerTriMatrixA lower triangular matrix 
B where 
B[i,j] = A[i,j] / s.
 See Also
See Also