modified: diffout.py
[GalaxyCodeBases.git] / c_cpp / etc / calc / help / lcm
blob9b5731fcdc144f6924b29be59f3995428dd15191
1 NAME
2     lcm - least common multiple of a set of rational numbers
4 SYNOPSIS
5     lcm(x1, x2, ...)
7 TYPES
8     x1, x2, ... rational number
10     return      rational number
12 DESCRIPTION
13     Compute the least common multiple of one or more rational numbers.
15     If no xi is zero, lcm(x1, x2, ...) is the least positive number v
16     for which v is a multiple of each xi.  If at least one xi is zero,
17     the lcm is zero.
19 EXAMPLE
20     ; print lcm(12, -24, 30), lcm(9/10, 11/5, 4/25), lcm(2)
21     -120 79.2 2
23 LIMITS
24     The number of arguments is not to exceed 1024.
26 LINK LIBRARY
27     NUMBER *qlcm(NUMBER *x1, NUMBER *x2)
29 SEE ALSO
30     gcd
32 ## Copyright (C) 1999-2006  Landon Curt Noll
34 ## Calc is open software; you can redistribute it and/or modify it under
35 ## the terms of the version 2.1 of the GNU Lesser General Public License
36 ## as published by the Free Software Foundation.
38 ## Calc is distributed in the hope that it will be useful, but WITHOUT
39 ## ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
40 ## or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General
41 ## Public License for more details.
43 ## A copy of version 2.1 of the GNU Lesser General Public License is
44 ## distributed with calc under the filename COPYING-LGPL.  You should have
45 ## received a copy with calc; if not, write to Free Software Foundation, Inc.
46 ## 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
48 ## @(#) $Revision: 30.1 $
49 ## @(#) $Id: lcm,v 30.1 2007/03/16 11:10:42 chongo Exp $
50 ## @(#) $Source: /usr/local/src/cmd/calc/help/RCS/lcm,v $
52 ## Under source code control:   1995/10/05 04:52:26
53 ## File existed as early as:    1995
55 ## chongo <was here> /\oo/\     http://www.isthe.com/chongo/
56 ## Share and enjoy!  :-)        http://www.isthe.com/chongo/tech/comp/calc/