modified: diffout.py
[GalaxyCodeBases.git] / c_cpp / etc / calc / help / floor
blobbd3071d4ff5be47612e4fb7fb9010f9ced9eabaa
1 NAME
2     floor - floor
4 SYNOPSIS
5     floor(x)
7 TYPES
8     x           real, complex, list, matrix
10     return      real or complex, list, matrix
12 DESCRIPTION
13     For real x, floor(x) is the greatest integer not greater than x.
15     For complex, floor(x) returns the real or complex number v for
16     which re(v) = floor(re(x)), im(v) = floor(im(x)).
18     For list or matrix x, floor(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 floor(t).
22 EXAMPLE
23     ; print floor(27), floor(1.23), floor(-4.56), floor(7.8 - 9.1i)
24     27 1 -5 7-10i
26 LIMITS
27     none
29 LINK LIBRARY
30     none
32 SEE ALSO
33     ceil, int
35 ## Copyright (C) 1999  Landon Curt Noll
37 ## Calc is open software; you can redistribute it and/or modify it under
38 ## the terms of the version 2.1 of the GNU Lesser General Public License
39 ## as published by the Free Software Foundation.
41 ## Calc is distributed in the hope that it will be useful, but WITHOUT
42 ## ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
43 ## or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General
44 ## Public License for more details.
46 ## A copy of version 2.1 of the GNU Lesser General Public License is
47 ## distributed with calc under the filename COPYING-LGPL.  You should have
48 ## received a copy with calc; if not, write to Free Software Foundation, Inc.
49 ## 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
51 ## @(#) $Revision: 30.1 $
52 ## @(#) $Id: floor,v 30.1 2007/03/16 11:10:42 chongo Exp $
53 ## @(#) $Source: /usr/local/src/cmd/calc/help/RCS/floor,v $
55 ## Under source code control:   1994/09/30 01:12:01
56 ## File existed as early as:    1994
58 ## chongo <was here> /\oo/\     http://www.isthe.com/chongo/
59 ## Share and enjoy!  :-)        http://www.isthe.com/chongo/tech/comp/calc/