floorΒΆ

Returns the largest interger that is less than or equal to its argument.

r = floor(m)

Return Value

r is the largest integer that is smaller or equal to m.

Parameters

m

m is a real matrix.

Example

* floor(2.8)
  2.0000
* floor(-2.8)
  -3.0000
* ceil(2.8)
   3.0000
* ceil(-2.8)
  -2.0000
* int(2.8)
   2.0000
* int(-2.8)
  -2.0000

id-620883