failed attempts to intercept copy command when the cursor is in the empty text field...
[LeanCalc.git] / help / ceil
1 NAME
2     ceil - ceiling
3
4 SYNOPSIS
5     ceil(x)
6
7 TYPES
8     x           real, complex, list, matrix
9
10     return      real or complex, list, matrix
11
12 DESCRIPTION
13     For real x, ceil(x) is the least integer not less than x.
14
15     For complex, ceil(x) returns the real or complex number v for
16     which re(v) = ceil(re(x)), im(v) = ceil(im(x)).
17
18     For list or matrix x, ceil(x) returns the list or matrix of the
19     same structure as x for which each element t of x has been replaced
20     by ceil(t).
21
22 EXAMPLE
23     > print ceil(27), ceil(1.23), ceil(-4.56), ceil(7.8 - 9.1i)
24     27 2 -4 8-9i
25
26 LIMITS
27     none
28
29 LINK LIBRARY
30     none
31
32 SEE ALSO
33     floor, int
34