Syntax
y=fix(x)
Arguments
- x
a real or complex matrix
- y
integer value matrix (or complex matrix with integer real and imaginary part)
Description
fix(x)
returns an integer matrix made of nearest rounded integers
toward zero,i.e, y=sign(x).*floor(abs(x))
. Same as int
.
Examples
Report an issue | ||
<< double | Floating point | floor >> |