MTM[fix] - integer part
|
Description
|
|
•
|
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]).
|
|
|