Scilab Reference Manual |
---|
nearfloat — get previous or next floating-point number
xnear = nearfloat(dir, x)
dir | : string ("succ" or "pred") |
x | : real scalar, vector or matrix |
xnear | : real scalar, vector or matrix |
This function computes, in the element wise meaning, the corresponding neighbours of the elements of x (in the underlying floating point set, see number_properties), the successors if dir = "succ" and the predecessors if dir = "pred"
format("e",22) nearfloat("succ",1) - 1 1 - nearfloat("pred",1) format("v") //reset default format
B.P.
<< ndims | nextpow2 >> |