  | FloatMatrixDivide(FloatMatrix, Single, FloatMatrix) Method | 
            Divide a matrix by a scalar.
            
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntaxpublic static void Divide(
	FloatMatrix A,
	float s,
	FloatMatrix B
)
Public Shared Sub Divide ( 
	A As FloatMatrix,
	s As Single,
	B As FloatMatrix
)
public:
static void Divide(
	FloatMatrix^ A, 
	float s, 
	FloatMatrix^ B
)
static member Divide : 
        A : FloatMatrix * 
        s : float32 * 
        B : FloatMatrix -> unit Parameters
- A  FloatMatrix
 - A matrix.
 - s  Single
 - A scalar.
 - B  FloatMatrix
 - A matrix whose contents are overwritten by the quotient
            B[i,j] = A[i,j] / s.
 
Exceptions
See Also