  | NMathFunctionsFloor(DoubleMatrix) Method | 
            Creates a new matrix with the same dimensions as a given matrix, whose values
            are the result of applying the floor rounding function to each element 
            of the matrix.
            
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntaxpublic static DoubleMatrix Floor(
	DoubleMatrix A
)
Public Shared Function Floor ( 
	A As DoubleMatrix
) As DoubleMatrix
public:
static DoubleMatrix^ Floor(
	DoubleMatrix^ A
)
static member Floor : 
        A : DoubleMatrix -> DoubleMatrix Parameters
- A  DoubleMatrix
 - A matrix.
 
Return Value
DoubleMatrixA new matrix.
RemarksB[i,j] = System.Math.floor(A[i,j])
See Also