Man Scilab

floor
Scilab Function

floor - rounding down

Calling Sequence

[y]=floor(x)

Parameters

Description

floor(x) returns an integer matrix made of nearest rounded down integers.

Examples


floor([1.9 -2.5])-[1,-3]
floor(-%inf)
x=rand()*10^20;floor(x)-x
 
  

See Also

round ,   fix ,   ceil ,  

Back