MTM
fix
integer part
Calling Sequence
Parameters
Description
Examples
fix(M)
M
-
array
For x >= 0, fix(x) is the greatest integer less than or equal to x. For x < 0, fix(x) = -fix(-x).
The fix(M) function computes the element-wise integer part of M. The result, R, is formed as R[i,j] = fix(M[i,j]).
with⁡MTM:
M≔Matrix⁡2,3,fill=−3.5:
fix⁡M
−3−3−3−3−3−3
See Also
MTM[ceil]
MTM[floor]
trunc
Download Help Document