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