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