MTM[ceil] - smallest integer greater than or equal to a number
|
Description
|
|
•
|
For an integer M, ceil(M) is the smallest integer greater than or equal to M.
|
•
|
The ceil(M) function on a matrix, M, computes the element-wise ceil of M. The result, R is formed as R[i,j] = ceil(M[i,j]).
|
|
|