Artifact dd5a475afd450846f4140e00bf4cd8ad23809978efd80faed8e73f12f14489ca:
- Executable file
r37/lisp/csl/html/r37_0073.html
— part of check-in
[f2fda60abd]
at
2011-09-02 18:13:33
on branch master
— Some historical releases purely for archival purposes
git-svn-id: https://svn.code.sf.net/p/reduce-algebra/code/trunk/historical@1375 2bfe0521-f11c-4a00-b80e-6202646ff360 (user: arthurcnorman@users.sourceforge.net, size: 769) [annotate] [blame] [check-ins using] [more...]
<A NAME=CEILING> <TITLE>CEILING</TITLE></A> <b><a href=r37_idx.html>INDEX</a></b><p><p> <B>CEILING</B> _ _ _ _ _ _ _ _ _ _ _ _ <B>operator</B><P> <P> <P> <P> <P> <H3> syntax: </H3> <em>ceiling</em>(<expression>) <P> <P> <P> This operator returns the ceiling (i.e., the least integer greater than or equal to its argument) if its argument has a numerical value. For negative numbers, this is equivalent to <A HREF=r37_0082.html>fix</A>. For non-numeric arguments, the value is an expression in the original operator. <P> <P> <P> <H3> examples: </H3> <P><PRE><TT> ceiling 3.4; 4 fix 3.4; 3 ceiling(-5.2); -5 fix(-5.2); -5 ceiling a; CEILING(A) </TT></PRE><P>