annotate man/lispref/numbers.texi @ 5360:46b53e84ea7a

#'substring-no-properties: check STRING's type, get_string_range_char won't. src/ChangeLog addition: 2011-02-24 Aidan Kehoe <kehoea@parhasard.net> * fns.c (Fsubstring_no_properties): Sigh, get_string_range_char checks the type of its START and END arguments, but doesn't check the type of its STRING argument. Thank you Raymond Toy! tests/ChangeLog addition: 2011-02-24 Aidan Kehoe <kehoea@parhasard.net> * automated/lisp-tests.el (substring-no-properties): Make sure this function checks its arguments' types, the absence of which was revealed by Raymond Toy's bug report of http://mid.gmane.org/4D65D413.5050103@gmail.com .
author Aidan Kehoe <kehoea@parhasard.net>
date Thu, 24 Feb 2011 09:36:19 +0000
parents 378a34562cbe
children a2912073be85
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1 @c -*-texinfo-*-
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2 @c This is part of the XEmacs Lisp Reference Manual.
444
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 428
diff changeset
3 @c Copyright (C) 1990, 1991, 1992, 1993, 1994 Free Software Foundation, Inc.
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4 @c See the file lispref.texi for copying conditions.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5 @setfilename ../../info/numbers.info
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
6 @node Numbers, Strings and Characters, Lisp Data Types, Top
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
7 @chapter Numbers
2090
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
8 @c #### Improve the indexing in this file!!!!
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
9 @cindex integers
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
10 @cindex numbers
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
11
4885
6772ce4d982b Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents: 4678
diff changeset
12 XEmacs supports two to five numeric data types. @dfn{Fixnums} and
2028
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
13 @dfn{floating point numbers} are always supported. As a build-time
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
14 option, @dfn{bignums}, @dfn{ratios}, and @dfn{bigfloats} may be
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
15 enabled on some platforms.
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
16
4885
6772ce4d982b Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents: 4678
diff changeset
17 Fixnums (called just @dfn{integers} in GNU Emacs and older versions
6772ce4d982b Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents: 4678
diff changeset
18 of XEmacs) are whole numbers such as @minus{}3, 0, #b0111, #xFEED,
2028
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
19 #o744. Their values are exact, and their range is limited. The
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
20 number prefixes `#b', `#o', and `#x' are supported to represent numbers
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
21 in binary, octal, and hexadecimal notation (or radix). Floating point
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
22 numbers are numbers with fractional parts, such as @minus{}4.5, 0.0, or
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
23 2.71828. They can also be expressed in exponential notation: 1.5e2
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
24 equals 150; in this example, @samp{e2} stands for ten to the second
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
25 power, and is multiplied by 1.5. Floating point values are not exact;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
26 they have a fixed, limited amount of precision.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
27
2028
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
28 Bignums are arbitrary precision integers. When supported, XEmacs can
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
29 handle any integral calculations you have enough virtual memory to
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
30 store. (More precisely, on current architectures the representation
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
31 allows integers whose storage would exhaust the address space.) They
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
32 are notated in the same way as other integers (fixnums). XEmacs
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
33 automatically converts results of computations from fixnum to bignum,
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
34 and back, depending on the storage required to represent the number.
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
35 Thus use of bignums are entirely transparent to the user, except for a
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
36 few special applications that expect overflows. Ratios are rational
2090
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
37 numbers with arbitrary precision. They are notated in the
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
38 usual way with the solidus, for example 5/3 or @minus{}22/7.
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
39
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
40 Bigfloats are floating point numbers with arbitrary precision, which
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
41 may be specified by the user (and may be different for different
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
42 bigfloats at the same time). Unlike integers, which are always
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
43 infinitely precise if they can be represented, floating point numbers
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
44 are inherently imprecise. This means that choice of precision can be a
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
45 very delicate issue. XEmacs automatically converts @emph{from float to
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
46 bigfloat} when floats and bigfloats are mixed in an expression, but a
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
47 bigfloat will never be converted to a float unless the user explicitly
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
48 coerces the value. Nor will the result of a float operation be
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
49 converted to bigfloat, except for ``contagion'' from another operand
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
50 that is already a bigfloat. However, when bigfloats of differing
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
51 precision are mixed, the result will always have the larger precision.
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
52 The exact rules are more carefully explained elsewhere
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
53 (@pxref{Canonicalization and Contagion}).
2028
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
54
4885
6772ce4d982b Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents: 4678
diff changeset
55 Common Lisp terminology and historical Emacs terminology conflict
6772ce4d982b Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents: 4678
diff changeset
56 here, to an extent. We attempt to use ``fixnum'' and ``integer''
6772ce4d982b Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents: 4678
diff changeset
57 consistently, but older XEmacs and GNU Emacs code and documentation use
6772ce4d982b Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents: 4678
diff changeset
58 the latter to mean the former. ``Float'' is used in Emacs documentation
6772ce4d982b Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents: 4678
diff changeset
59 to mean ``fixed precision floating point number'', and the Common Lisp
6772ce4d982b Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents: 4678
diff changeset
60 distinctions among @dfn{short-floats}, @dfn{long-floats}, @emph{etc.},
6772ce4d982b Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents: 4678
diff changeset
61 and bigfloats (which are not standardized in Common Lisp) are not
6772ce4d982b Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents: 4678
diff changeset
62 reflected in XEmacs terminology. We're working on this, but volunteers
6772ce4d982b Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents: 4678
diff changeset
63 to fix it in the XEmacs manuals would be heartily welcomed.
2028
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
64
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
65 @menu
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
66 * Integer Basics:: Representation and range of integers.
2028
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
67 * Rational Basics:: Representation and range of rational numbers.
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
68 * Float Basics:: Representation and range of floating point.
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
69 * The Bignum Extension:: Arbitrary precision integers, ratios, and floats.
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
70 * Predicates on Numbers:: Testing for numbers.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
71 * Comparison of Numbers:: Equality and inequality predicates.
2028
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
72 * Numeric Conversions:: Converting float to integer and vice versa.
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
73 * Arithmetic Operations:: How to add, subtract, multiply and divide.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
74 * Rounding Operations:: Explicitly rounding floating point numbers.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
75 * Bitwise Operations:: Logical and, or, not, shifting.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
76 * Math Functions:: Trig, exponential and logarithmic functions.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
77 * Random Numbers:: Obtaining random integers, predictable or not.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
78 @end menu
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
79
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
80 @node Integer Basics
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
81 @section Integer Basics
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
82
2028
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
83 The range of values for an integer depends on the machine. If a
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
84 multiple-precision arithmetic library is available on your platform,
2090
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
85 support for bignums, that is, integers with arbitrary precision, may be
2028
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
86 compiled in to your XEmacs. The rest of this section assumes that the
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
87 bignum extension is @emph{not} available. The bignum extension and the
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
88 user-visible differences in normal integer arithmetic are discussed in a
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
89 separate section @ref{The Bignum Extension}.
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
90
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
91 The minimum range is @minus{}1073741824 to 1073741823 (31 bits; i.e.,
444
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 428
diff changeset
92 @ifinfo
2028
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
93 -2**30
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
94 @end ifinfo
444
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 428
diff changeset
95 @tex
2028
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
96 $-2^{30}$
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
97 @end tex
444
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 428
diff changeset
98 to
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 428
diff changeset
99 @ifinfo
2028
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
100 2**30 - 1),
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
101 @end ifinfo
444
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 428
diff changeset
102 @tex
2028
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
103 $2^{30}-1$),
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
104 @end tex
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
105 but some machines may provide a wider range. Many examples in this
2028
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
106 chapter assume an integer has 31 bits.
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
107 @cindex overflow
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
108
2028
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
109 The range of fixnums is available to Lisp programs:
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
110
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
111 @defvar most-positive-fixnum
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
112 The fixed-precision integer closest in value to positive infinity.
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
113 @end defvar
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
114
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
115 @defvar most-negative-fixnum
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
116 The fixed-precision integer closest in value to negative infinity.
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
117 @end defvar
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
118
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
119 Here is a common idiom to temporarily suppress garbage collection:
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
120 @example
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
121 (garbage-collect)
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
122 (let ((gc-cons-threshold most-positive-fixnum))
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
123 ;; allocation-intensive computation
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
124 )
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
125 (garbage-collect)
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
126 @end example
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
127
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
128 The Lisp reader reads an integer as a sequence of digits with optional
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
129 initial sign and optional final period.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
130
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
131 @example
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
132 1 ; @r{The integer 1.}
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
133 1. ; @r{The integer 1.}
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
134 +1 ; @r{Also the integer 1.}
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
135 -1 ; @r{The integer @minus{}1.}
2028
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
136 2147483648 ; @r{Read error, due to overflow.}
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
137 0 ; @r{The integer 0.}
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
138 -0 ; @r{The integer 0.}
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
139 @end example
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
140
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
141 To understand how various functions work on integers, especially the
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
142 bitwise operators (@pxref{Bitwise Operations}), it is often helpful to
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
143 view the numbers in their binary form.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
144
2028
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
145 In 31-bit binary, the decimal integer 5 looks like this:
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
146
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
147 @example
2028
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
148 000 0000 0000 0000 0000 0000 0000 0101
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
149 @end example
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
150
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
151 @noindent
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
152 (We have inserted spaces between groups of 4 bits, and two spaces
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
153 between groups of 8 bits, to make the binary integer easier to read.)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
154
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
155 The integer @minus{}1 looks like this:
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
156
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
157 @example
2028
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
158 111 1111 1111 1111 1111 1111 1111 1111
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
159 @end example
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
160
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
161 @noindent
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
162 @cindex two's complement
2028
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
163 @minus{}1 is represented as 31 ones. (This is called @dfn{two's
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
164 complement} notation.)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
165
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
166 The negative integer, @minus{}5, is creating by subtracting 4 from
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
167 @minus{}1. In binary, the decimal integer 4 is 100. Consequently,
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
168 @minus{}5 looks like this:
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
169
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
170 @example
2028
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
171 111 1111 1111 1111 1111 1111 1111 1011
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
172 @end example
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
173
2028
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
174 In this implementation, the largest 31-bit binary integer is the
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
175 decimal integer 1,073,741,823. In binary, it looks like this:
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
176
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
177 @example
2028
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
178 011 1111 1111 1111 1111 1111 1111 1111
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
179 @end example
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
180
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
181 Since the arithmetic functions do not check whether integers go
2028
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
182 outside their range, when you add 1 to 1,073,741,823, the value is the
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
183 negative integer @minus{}1,073,741,824:
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
184
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
185 @example
2028
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
186 (+ 1 1073741823)
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
187 @result{} -1073741824
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
188 @result{} 100 0000 0000 0000 0000 0000 0000 0000
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
189 @end example
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
190
2028
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
191 Many of the arithmetic functions accept markers for arguments as well
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
192 as integers. (@xref{Markers}.) More precisely, the actual arguments to
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
193 such functions may be either integers or markers, which is why we often
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
194 give these arguments the name @var{int-or-marker}. When the argument
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
195 value is a marker, its position value is used and its buffer is ignored.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
196
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
197 @ignore
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
198 In version 19, except where @emph{integer} is specified as an
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
199 argument, all of the functions for markers and integers also work for
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
200 floating point numbers.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
201 @end ignore
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
202
2028
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
203
2032
cc89c76c4b17 [xemacs-hg @ 2004-04-19 11:11:59 by stephent]
stephent
parents: 2028
diff changeset
204 @node Rational Basics
cc89c76c4b17 [xemacs-hg @ 2004-04-19 11:11:59 by stephent]
stephent
parents: 2028
diff changeset
205 @section Rational Basics
2028
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
206
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
207 Ratios (built-in rational numbers) are available only when the bignum
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
208 extension is built into your XEmacs. This facility is new and
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
209 experimental. It is discussed in a separate section for convenience of
2090
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
210 updating the documentation @ref{The Bignum Extension}. The following
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
211 functions are defined regardless of the presence of the extension, but
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
212 have trivial results for integers.
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
213
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
214 @defun numerator rational
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
215 @cindex numbers
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
216 Return the numerator of the canonical form of @var{rational}.
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
217 If @var{rational} is an integer, @var{rational} is returned.
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
218 @var{rational} must be an integer or a ratio.
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
219 @end defun
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
220
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
221 @defun denominator rational
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
222 Return the denominator of the canonical form of @var{rational}.
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
223 If @var{rational} is an integer, 1 is returned. @var{rational} must be
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
224 an integer or a ratio.
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
225 @end defun
2028
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
226
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
227
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
228 @node Float Basics
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
229 @section Floating Point Basics
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
230
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
231 XEmacs supports floating point numbers. The precise range of floating
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
232 point numbers is machine-specific; it is the same as the range of the C
2028
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
233 data type @code{double} on the machine in question. If a
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
234 multiple-precision arithmetic library is available on your platform,
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
235 support for bigfloats, that is, floating point numbers with arbitrary
2090
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
236 precision, may be compiled in to your XEmacs. The rest of this section
2028
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
237 assumes that the bignum extension is @emph{not} available. The bigfloat
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
238 extension and the user-visible differences in normal float arithmetic
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
239 are discussed in a separate section @ref{The Bignum Extension}.
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
240
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
241 The printed representation for floating point numbers requires either
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
242 a decimal point (with at least one digit following), an exponent, or
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
243 both. For example, @samp{1500.0}, @samp{15e2}, @samp{15.0e2},
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
244 @samp{1.5e3}, and @samp{.15e4} are five ways of writing a floating point
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
245 number whose value is 1500. They are all equivalent. You can also use
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
246 a minus sign to write negative floating point numbers, as in
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
247 @samp{-1.0}.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
248
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
249 @cindex IEEE floating point
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
250 @cindex positive infinity
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
251 @cindex negative infinity
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
252 @cindex infinity
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
253 @cindex NaN
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
254 Most modern computers support the IEEE floating point standard, which
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
255 provides for positive infinity and negative infinity as floating point
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
256 values. It also provides for a class of values called NaN or
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
257 ``not-a-number''; numerical functions return such values in cases where
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
258 there is no correct answer. For example, @code{(sqrt -1.0)} returns a
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
259 NaN. For practical purposes, there's no significant difference between
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
260 different NaN values in XEmacs Lisp, and there's no rule for precisely
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
261 which NaN value should be used in a particular case, so this manual
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
262 doesn't try to distinguish them. XEmacs Lisp has no read syntax for NaNs
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
263 or infinities; perhaps we should create a syntax in the future.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
264
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
265 You can use @code{logb} to extract the binary exponent of a floating
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
266 point number (or estimate the logarithm of an integer):
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
267
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
268 @defun logb number
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
269 This function returns the binary exponent of @var{number}. More
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
270 precisely, the value is the logarithm of @var{number} base 2, rounded
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
271 down to an integer.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
272 @end defun
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
273
2028
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
274 The range of floats is available to Lisp programs:
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
275
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
276 @defvar most-positive-float
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
277 The fixed-precision floating-point-number closest in value to positive
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
278 infinity.
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
279 @end defvar
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
280
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
281 @defvar most-negative-float
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
282 The fixed-precision floating point number closest in value to negative
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
283 infinity.
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
284 @end defvar
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
285
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
286 @defvar least-positive-float
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
287 The positive float closest in value to 0. May not be normalized.
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
288 @end defvar
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
289
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
290 @defvar least-negative-float
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
291 The positive float closest in value to 0. Must be normalized.
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
292 @end defvar
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
293
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
294 @defvar least-positive-normalized-float
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
295 The negative float closest in value to 0. May not be normalized.
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
296 @end defvar
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
297
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
298 @defvar least-negative-normalized-float
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
299 The negative float closest in value to 0. Must be normalized.
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
300 @end defvar
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
301
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
302 Note that for floating point numbers there is an interesting limit on
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
303 how small they can get, as well as a limit on how big they can get. In
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
304 some representations, a floating point number is @dfn{normalized} if the
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
305 leading digit is non-zero. This allows representing numbers smaller
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
306 than the most-negative exponent can express, by having fractional
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
307 mantissas. This means that the number is less precise than a normalized
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
308 floating point number, so Lisp programs can detect loss of precision due
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
309 to unnormalized floats by checking whether the number is between
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
310 @code{least-positive-float} and @code{least-positive-normalized-float}.
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
311
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
312
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
313 @node The Bignum Extension
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
314 @section The Bignum Extension
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
315
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
316 In XEmacs 21.5.18, an extension was added by @email{james@@xemacs.org,
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
317 Jerry James} to allow linking with arbitrary-precision arithmetic
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
318 libraries if they are available on your platform. ``Arbitrary''
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
319 precision means precisely what it says. Your ability to work with large
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
320 numbers is limited only by the amount of virtual memory (and time) you
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
321 can throw at them.
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
322
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
323 As of 09 April 2004, support for the GNU Multiple Precision
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
324 arithmetic library (GMP) is nearly complete, and support for the BSD
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
325 Multiple Precision arithmetic library (MP) is being debugged. To enable
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
326 bignum support using GMP (respectively MP), invoke configure with your
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
327 usual options, and add @samp{--use-number-lib=gmp} (respectively
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
328 @samp{--use-number-lib=mp}). The default is to disable bignum support,
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
329 but if you are using a script to automate the build process, it may be
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
330 convenient to explicitly disable support by @emph{appending}
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
331 @samp{--use-number-lib=no} to your invocation of configure. GMP has an
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
332 MP compatibility mode, but it is not recommended, as there remain poorly
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
333 understood bugs (even more so than for other vendors' versions of MP).
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
334
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
335 With GMP, exact arithmetic with integers and ratios of arbitrary
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
336 precision and approximate (``floating point'') arithmetic of arbitrary
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
337 precision are implemented efficiently in the library. (Note that
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
338 numerical implementations are quite delicate and sensitive to
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
339 optimization. If the library was poorly optimized for your hardware, as
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
340 is often the case with Linux distributions for 80x86, you may achieve
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
341 gains of @emph{several orders of magnitude} by rebuilding the MP
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
342 library. See @uref{http://www.swox.com/gmp/gmp-speed.html}.) The MP
2090
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
343 implementation provides arbitrary precision integers. Ratios and arbitrary
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
344 precision floats are not available with MP.
2028
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
345
2033
a7b2d995287f [xemacs-hg @ 2004-04-19 11:25:58 by stephent]
stephent
parents: 2032
diff changeset
346 If your code needs to run correctly whether or not the feature is
a7b2d995287f [xemacs-hg @ 2004-04-19 11:25:58 by stephent]
stephent
parents: 2032
diff changeset
347 provided, you may test for the features @code{bignum}, @code{ratio}, and
a7b2d995287f [xemacs-hg @ 2004-04-19 11:25:58 by stephent]
stephent
parents: 2032
diff changeset
348 @code{bigfloat}.
a7b2d995287f [xemacs-hg @ 2004-04-19 11:25:58 by stephent]
stephent
parents: 2032
diff changeset
349
2090
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
350 The XEmacs bignum facility implements the Common Lisp notions of
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
351 @dfn{canonicalization} and @dfn{contagion}. Canonicalization means that
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
352 in exact (integer and ratio) arithmetic, a result of an operation is
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
353 always converted to the ``smallest'' type that can represent it
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
354 exactly. For exact numbers, the user only cares if efficiency is
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
355 extremely important; Lisp does not try to determine an order of
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
356 computation that avoids conversion to bignum (or ratio) even if one is
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
357 available. (Note that integers are never silently converted to
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
358 ratios: the result of @code{(/ 1 2)} is the integer @code{0}. You can
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
359 @emph{request} that a ratio be used if needed with @code{(div 1 2)}.)
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
360
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
361 Since floating point arithmetic is inherently imprecise, numbers are
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
362 implicitly coerced to bigfloats only if other operands in the expression
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
363 are bigfloat, and bigfloats are only coerced to other numerical types by
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
364 explicit calls to the function @code{coerce}.
2028
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
365
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
366 Bignum support is incomplete. If you would like to help with bignum
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
367 support, especially on BSD MP, please subscribe to the
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
368 @uref{http://www.xemacs.org/Lists/#xemacs-beta, XEmacs Beta mailing
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
369 list}, and book up on @file{number-gmp.h} and @file{number-mp.h}. Jerry
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
370 has promised to write internals documentation eventually, but if your
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
371 skills run more to analysis and documentation than to writing new code,
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
372 feel free to fill in the gap!
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
373
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
374 @menu
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
375 * Bignum Basics:: Representation and range of integers.
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
376 * Ratio Basics:: Representation and range of rational numbers.
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
377 * Bigfloat Basics:: Representation and range of floating point.
2090
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
378 * Canonicalization and Contagion:: Automatic coercion to other types.
2028
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
379 * Compatibility Issues:: Changes in fixed-precision arithmetic.
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
380 @end menu
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
381
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
382
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
383 @node Bignum Basics
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
384 @subsection Bignum Basics
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
385
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
386 In most cases, bignum support should be transparent to users and Lisp
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
387 programmers. A bignum-enabled XEmacs will automatically convert from
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
388 fixnums to bignums and back in pure integer arithmetic, and for GNU MP,
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
389 from floats to bigfloats. (Bigfloats must be explicitly coerced to
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
390 other types, even if they are exactly representable by less precise
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
391 types.) The Lisp reader and printer have been enhanced to handle
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
392 bignums, as have the mathematical functions. Rationals (fixnums,
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
393 bignums, and ratios) are printed using the @samp{%d}, @samp{%o},
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
394 @samp{%x}, and @samp{%u} format conversions.
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
395
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
396
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
397 @node Ratio Basics
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
398 @subsection Ratio Basics
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
399
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
400 Ratios, when available have the read syntax and print representation
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
401 @samp{3/5}. Like other rationals (fixnums and bignums), they are
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
402 printed using the @samp{%d}, @samp{%o}, @samp{%x}, and @samp{%u} format
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
403 conversions.
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
404
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
405
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
406 @node Bigfloat Basics
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
407 @subsection Bigfloat Basics
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
408
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
409 Bigfloats, when available, have the same read syntax and print
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
410 representations as fixed-precision floats.
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
411
2182
c91543697b09 [xemacs-hg @ 2004-07-19 08:24:24 by stephent]
stephent
parents: 2091
diff changeset
412 It is possible to make bigfloat the default floating point format by
c91543697b09 [xemacs-hg @ 2004-07-19 08:24:24 by stephent]
stephent
parents: 2091
diff changeset
413 setting @code{default-float-precision} to a non-zero value. Precision
4678
b5e1d4f6b66f Make #'floor, #'ceiling, #'round, #'truncate conform to Common Lisp.
Aidan Kehoe <kehoea@parhasard.net>
parents: 2182
diff changeset
414 is given in bits, with a maximum precision of
b5e1d4f6b66f Make #'floor, #'ceiling, #'round, #'truncate conform to Common Lisp.
Aidan Kehoe <kehoea@parhasard.net>
parents: 2182
diff changeset
415 @code{bigfloat-maximum-precision}.
2182
c91543697b09 [xemacs-hg @ 2004-07-19 08:24:24 by stephent]
stephent
parents: 2091
diff changeset
416 @c #### is this true?
c91543697b09 [xemacs-hg @ 2004-07-19 08:24:24 by stephent]
stephent
parents: 2091
diff changeset
417 Bigfloats are created automatically when a number with yes
c91543697b09 [xemacs-hg @ 2004-07-19 08:24:24 by stephent]
stephent
parents: 2091
diff changeset
418
c91543697b09 [xemacs-hg @ 2004-07-19 08:24:24 by stephent]
stephent
parents: 2091
diff changeset
419
2028
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
420
2090
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
421 @node Canonicalization and Contagion
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
422 @subsection Canonicalization and Contagion
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
423
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
424 @dfn{Canonicalization} is a rule intended to enhance the time and space
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
425 efficiency of exact arithmetic. Because bignums and ratios are
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
426 implemented as record objects, they take up much more space than
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
427 fixnums, which are implemented as an immediate object. Conversions and
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
428 calls to the MP library also take time. So the implementation always
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
429 converts the result of exact arithmetic to the smallest representation
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
430 that can exactly represent the quantity.
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
431
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
432 @example
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
433 (+ 3/4 5)
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
434 @result{} 23/4
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
435
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
436 (+ 3/4 1/4 2)
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
437 @result{} 3
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
438 @end example
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
439
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
440 Conversely, if an integer (read or computed) cannot be represented as a
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
441 fixnum, a bignum will be used. Integer division is a somewhat
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
442 exceptional case. Because it is useful and is the historical meaning of
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
443 the function @code{/}, a separate function @code{div} is provided.
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
444 @code{div} is identical to @code{/} except that when the rational result
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
445 is not an integer, it is represented exactly as a ratio. In both cases
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
446 if a rational result is an integer, it is automatically converted to the
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
447 appropriate integral representation.
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
448
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
449 Note that the efficiency gain from canonicalization is likely to be
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
450 less than you might think. Experience with numerical analysis shows that
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
451 in very precise calculations, the required precision tends to increase.
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
452 Thus it is typically wasted effort to attempt to convert to smaller
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
453 representations, as the number is often reused and requires a larger
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
454 representation. However, XEmacs Lisp presumes that calculations using
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
455 bignums are the exception, so it applies canonicalization.
2028
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
456
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
457 @dfn{Contagion} is one way to address the requirement that an arithmetic
2090
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
458 operation should not fail because of differing types of the operands.
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
459 Contagion is the idea that less precise operands are converted to the
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
460 more precise type, and then the operation is performed. While changing
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
461 precision is a delicate issue, contagion is so useful that XEmacs
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
462 performs it automatically.
2028
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
463
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
464 In XEmacs, the following rules of contagion are used:
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
465
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
466 @c #### this probably wants names for each rule
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
467 @enumerate
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
468 @item
2090
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
469 If an expression mixes an integral type with a ratio, then the usual
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
470 rules of rational arithmetic apply. (If the result of the expression
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
471 happens to be an integer, it will be canonicalized to integer.)
2028
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
472
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
473 @item
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
474 If an expression mixes a rational type (fixnum, bignum, or ratio) with a
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
475 float, the rational operand is converted to a float and the operation
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
476 performed if the result would fit in a float, otherwise both operands
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
477 are promoted to bigfloat, and the operation performed.
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
478
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
479 @item
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
480 If an expression mixes any other type with a bigfloat, the other operand
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
481 is converted to bigfloat and the operation performed.
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
482
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
483 @item
2090
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
484 If bigfloats of different precision are mixed, all are converted to the
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
485 @emph{highest} precision, and the operation performed.
2028
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
486 @end enumerate
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
487
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
488 Note that there are no rules to canonicalize floats or bigfloats. This
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
489 might seem surprising, but in both cases information will be lost. Any
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
490 floating point representation is implicitly approximate. A conversion
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
491 to a rational type, even if it seems exact, loses this information.
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
492 More subtly, demoting a bigfloat to a smaller bigfloat or to a float
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
493 would lose information about the precision of the result, and thus some
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
494 information about the accuracy. Thus floating point numbers are always
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
495 already in canonical form.
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
496
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
497 Of course the programmer can explicitly request canonicalization, or
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
498 more coercion to another type. Coercion uses the Common Lisp
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
499 compatibility function @code{coerce} from the @file{cl-extra.el}
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
500 library. A number can be explicitly converted to canonical form
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
501 according to the above rules using
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
502
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
503 @defun canonicalize-number number
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
504 Return the canonical form of @var{number}.
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
505 @end defun
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
506
2090
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
507 However, if we've done our job properly, this is always a no-op. That
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
508 is, if you find a number in un-canonicalized form, please report it as a
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
509 bug.
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
510
2028
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
511
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
512 @node Compatibility Issues
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
513 @subsection Compatibility Issues
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
514
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
515 @emph{Surgeon General's Warning}: The automatic conversions cannot be
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
516 disabled at runtime. Old functions will not produce ratios unless there
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
517 is a ratio operand, so there should be few surprises with type
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
518 conflicts (the contagion rules are quite natural for Lisp programmers
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
519 used to the behavior of integers and floats in pre-21.5.18 XEmacsen),
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
520 but they can't be ruled out. Also, if you work with extremely large
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
521 numbers, your machine may arbitrarily decide to hand you an unpleasant
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
522 surprise rather than a bignum.
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
523
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
524 User-visible changes in behavior include (in probable order of annoyance)
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
525
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
526 @itemize
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
527 @item
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
528 Arithmetic can cause a segfault, depending on your MP library.
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
529
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
530 GMP by default allocates temporaries on the stack. If you run out of
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
531 stack space, you're dead; there is no way that we know of to reliably
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
532 detect this condition, because @samp{alloca} is typically implemented to
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
533 be @emph{fast} rather than robust. If you just need a little more
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
534 oomph, use a bigger stack (@emph{e.g.}, the @file{ulimit -s} command in
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
535 bash(1)). If you want robustness at the cost of speed, configure GMP
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
536 with @samp{--disable-alloca} and rebuild the GMP library.
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
537
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
538 We do not know whether BSD MP uses @samp{alloca} or not. Please send
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
539 any information you have as a bug report (@kbd{M-x report-xemacs-bug
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
540 @key{RET}}), which will give us platform information. (We do know that
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
541 BSD MP implementations vary across vendors, but how much, we do not know
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
542 yet.)
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
543
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
544 @item
4885
6772ce4d982b Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents: 4678
diff changeset
545 Our documentation's terminology, and our API terminology, is not always
6772ce4d982b Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents: 4678
diff changeset
546 Common-Lisp-conforming. Many places use ``integer'' where ``fixnum''
6772ce4d982b Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents: 4678
diff changeset
547 better reflects what the code accepts or produces; there are similar
6772ce4d982b Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents: 4678
diff changeset
548 issues for the varying types of floating point numbers. Since Emacs
6772ce4d982b Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents: 4678
diff changeset
549 Lisp has not had a ratio type before, there are no problems there.
2028
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
550
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
551 @item
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
552 An atom with ratio read syntax now returns a number, not a symbol.
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
553
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
554 @item
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
555 Many operations that used to cause a range error now succeed, with
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
556 intermediate results and return values coerced to bignums as needed.
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
557
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
558 @item
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
559 The @samp{%u} format conversion will now give an error if its argument
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
560 is negative. (Without MP, it prints a number which Lisp can't read.)
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
561 @end itemize
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
562
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
563 This is not a compatibility issue in the sense of specification, but
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
564 careless programmers who have taken advantage of the immediate
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
565 representation for numbers and written @code{(eq x y)} are in for a
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
566 surprise. This doesn't work with bignums, even if both arguments are
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
567 bignums! Arbitrary precision obviously requires consing new objects
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
568 because the objects are ``large'' and of variable size, and the
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
569 definition of @samp{eq} does not permit different objects to compare as
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
570 equal. Instead of @code{eq}, use @code{eql}, in which numbers of the
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
571 same type which have equal values compare equal, or @code{=}, which does
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
572 any necessary type coercions before comparing for equality
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
573 @ref{Comparison of Numbers}.
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
574
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
575
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
576 @node Predicates on Numbers
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
577 @section Type Predicates for Numbers
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
578
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
579 The functions in this section test whether the argument is a number or
2090
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
580 whether it is a certain sort of number. The functions which test for
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
581 type can take any type of Lisp object as argument (the more general
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
582 predicates would not be of much use otherwise). However, the
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
583 @code{zerop} predicate requires a number as its argument, and the
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
584 @code{evenp}, and @code{oddp} predicates require integers as their
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
585 arguments. See also @code{integer-or-marker-p},
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
586 @code{integer-char-or-marker-p}, @code{number-or-marker-p} and
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
587 @code{number-char-or-marker-p}, in @ref{Predicates on Markers}.
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
588
2090
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
589 @defun numberp object
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
590 This predicate tests whether its argument is a number (either integer or
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
591 floating point), and returns @code{t} if so, @code{nil} otherwise.
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
592 @end defun
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
593
2090
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
594 @defun realp object
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
595 @cindex numbers
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
596 The @code{realp} predicate tests to see whether @var{object} is a
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
597 rational or floating point number, and returns @code{t} if so,
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
598 @code{nil} otherwise. Currently equivalent to @code{numberp}.
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
599 @end defun
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
600
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
601 @defun zerop number
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
602 This predicate tests whether its argument is zero, and returns @code{t}
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
603 if so, @code{nil} otherwise. The argument must be a number.
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
604
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
605 These two forms are equivalent: @code{(zerop x)} @equiv{} @code{(= x 0)}.
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
606 @end defun
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
607
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
608 @defun integerp object
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
609 This predicate tests whether its argument is an integer, and returns
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
610 @code{t} if so, @code{nil} otherwise.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
611 @end defun
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
612
2090
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
613 @defun oddp integer
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
614 @cindex integers
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
615 The @code{oddp} predicate tests to see whether @var{integer} is odd, and
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
616 returns @code{t} if so, @code{nil} otherwise. @var{integer} must be an
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
617 integer.
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
618 @end defun
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
619
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
620 @defun evenp integer
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
621 @cindex integers
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
622 The @code{evenp} predicate tests to see whether @var{integer} is even,
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
623 and returns @code{t} if so, @code{nil} otherwise. @var{integer} must be
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
624 an integer.
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
625 @end defun
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
626
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
627 @defun natnump object
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
628 @cindex natural numbers
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
629 The @code{natnump} predicate (whose name comes from the phrase
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
630 ``natural-number-p'') tests to see whether its argument is a nonnegative
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
631 integer, and returns @code{t} if so, @code{nil} otherwise. 0 is
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
632 considered non-negative.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
633 @end defun
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
634
2090
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
635 @defun fixnump object
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
636 @cindex integers
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
637 The @code{} predicate tests to see whether its argument is an integer
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
638 represented as a fixnum, and returns @code{t} if so, @code{nil}
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
639 otherwise.
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
640 @end defun
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
641
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
642 @defun bignump object
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
643 @cindex integers
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
644 The @code{bignump} predicate tests to see whether @var{object} is an
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
645 integer represented as a bignum, and returns @code{t} if so, @code{nil}
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
646 otherwise.
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
647 @end defun
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
648
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
649 @defun rationalp object
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
650 @cindex numbers
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
651 The @code{rationalp} predicate tests to see whether @var{object} is a
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
652 rational number, and returns @code{t} if so, @code{nil} otherwise.
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
653 @end defun
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
654
2090
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
655 @defun ratiop object
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
656 @cindex ratios
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
657 The @code{ratiop} predicate tests to see whether @var{object} is a
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
658 number represented as a ratio, and returns @code{t} if so, @code{nil}
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
659 otherwise.
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
660 @end defun
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
661
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
662 @defun floatingp object
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
663 @cindex floats
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
664 The @code{floatingp} predicate tests to see whether @var{object} is a
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
665 floating point number represented as a float or a bigfloat, and returns
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
666 @code{t} if so, @code{nil} otherwise.
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
667 @end defun
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
668
2090
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
669 @defun floatp object
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
670 @cindex floats
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
671 This predicate tests whether its argument is a floating point
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
672 number and returns @code{t} if so, @code{nil} otherwise.
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
673
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
674 @code{floatp} does not exist in Emacs versions 18 and earlier. If the
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
675 bignum extension is present, it returns @code{nil} for a bigfloat.
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
676 @end defun
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
677
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
678 @defun bigfloatp object
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
679 @cindex floats
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
680 The @code{bigfloatp} predicate tests to see whether @var{object} is an
2091
0221e454fe63 [xemacs-hg @ 2004-05-21 03:27:55 by stephent]
stephent
parents: 2090
diff changeset
681 floating point number represented as a bigfloat, and returns @code{t} if
0221e454fe63 [xemacs-hg @ 2004-05-21 03:27:55 by stephent]
stephent
parents: 2090
diff changeset
682 so, @code{nil} otherwise.
2090
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
683 @end defun
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
684
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
685
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
686 @node Comparison of Numbers
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
687 @section Comparison of Numbers
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
688 @cindex number equality
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
689
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
690 To test numbers for numerical equality, you should normally use
2090
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
691 @code{=}, not @code{eq}. There can be many distinct floating point,
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
692 bignum, and ratio number objects with the same numeric value. If you
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
693 use @code{eq} to compare them, then you test whether two values are the
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
694 same @emph{object}. By contrast, @code{=} compares only the numeric
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
695 values of the objects.
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
696
2028
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
697 In versions before 21.5.18, each integer value had a unique Lisp
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
698 object in XEmacs Lisp. Therefore, @code{eq} was equivalent to @code{=}
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
699 where integers are concerned. Even with the introduction of bignums, it
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
700 is sometimes convenient to use @code{eq} for comparing an unknown value
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
701 with an integer, because @code{eq} does not report an error if the
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
702 unknown value is not a number---it accepts arguments of any type. By
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
703 contrast, @code{=} signals an error if the arguments are not numbers or
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
704 markers. However, it is a good idea to use @code{=} if you can, even
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
705 for comparing exact values, because two bignums or ratios with the same
2ba4f06a264d [xemacs-hg @ 2004-04-19 08:02:27 by stephent]
stephent
parents: 1738
diff changeset
706 value will often not be the same object.
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
707
2090
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
708 On the other hand, some functions, such as the string- and
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
709 buffer-searching functions, will return an integer on success, but
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
710 something else (usually @code{nil}) on failure. If it is known what the
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
711 numerical subtype (float, bigfloat, or exact) of the returned object
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
712 will be if it is a number, then the predicate @code{eql} can be used for
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
713 comparison without signaling an error on some expected return values.
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
714 Because of canonicalization, @code{eql} can be used to compare a fixnum
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
715 value to something that might be a ratio; if the potential ratio value
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
716 is representable as a fixnum, it will be canonicalized to fixnum before
2091
0221e454fe63 [xemacs-hg @ 2004-05-21 03:27:55 by stephent]
stephent
parents: 2090
diff changeset
717 comparing. However, although floats and bigfloats are of different
0221e454fe63 [xemacs-hg @ 2004-05-21 03:27:55 by stephent]
stephent
parents: 2090
diff changeset
718 types for the purpose of comparisons via @code{eql}, two bigfloats of
0221e454fe63 [xemacs-hg @ 2004-05-21 03:27:55 by stephent]
stephent
parents: 2090
diff changeset
719 different @emph{precision} that are @code{=} will always be @code{eql}.
2090
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
720
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
721 @example
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
722 (eql 2 (string-match "ere" "there"))
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
723 @result{} t
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
724
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
725 (eql 2 (string-match "ere" "three"))
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
726 @result{} nil
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
727
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
728 (eql 2 2.0)
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
729 @result{} nil
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
730
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
731 (= 2 (string-match "ere" "there"))
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
732 @result{} t
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
733
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
734 (= 2 (string-match "ere" "three"))
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
735 @error{} Wrong type argument: number-char-or-marker-p, nil
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
736
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
737 (= 2 2.0)
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
738 @result{} t
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
739 @end example
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
740
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
741
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
742
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
743 There is another wrinkle: because floating point arithmetic is not
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
744 exact, it is often a bad idea to check for equality of two floating
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
745 point values. Usually it is better to test for approximate equality.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
746 Here's a function to do this:
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
747
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
748 @example
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
749 (defconst fuzz-factor 1.0e-6)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
750 (defun approx-equal (x y)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
751 (or (and (= x 0) (= y 0))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
752 (< (/ (abs (- x y))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
753 (max (abs x) (abs y)))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
754 fuzz-factor)))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
755 @end example
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
756
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
757 @cindex CL note---integers vrs @code{eq}
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
758 @quotation
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
759 @b{Common Lisp note:} Comparing numbers in Common Lisp always requires
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
760 @code{=} because Common Lisp implements multi-word integers, and two
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
761 distinct integer objects can have the same numeric value. XEmacs Lisp
4885
6772ce4d982b Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents: 4678
diff changeset
762 can have just one fixnum object for any given value because it has a
6772ce4d982b Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents: 4678
diff changeset
763 limited range of fixnum values.
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
764 @end quotation
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
765
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
766 In addition to numbers, all of the following functions also accept
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
767 characters and markers as arguments, and treat them as their number
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
768 equivalents.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
769
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
770 @defun = number &rest more-numbers
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
771 This function returns @code{t} if all of its arguments are numerically
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
772 equal, @code{nil} otherwise.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
773
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
774 @example
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
775 (= 5)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
776 @result{} t
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
777 (= 5 6)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
778 @result{} nil
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
779 (= 5 5.0)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
780 @result{} t
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
781 (= 5 5 6)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
782 @result{} nil
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
783 @end example
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
784 @end defun
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
785
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
786 @defun /= number &rest more-numbers
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
787 This function returns @code{t} if no two arguments are numerically
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
788 equal, @code{nil} otherwise.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
789
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
790 @example
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
791 (/= 5 6)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
792 @result{} t
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
793 (/= 5 5 6)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
794 @result{} nil
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
795 (/= 5 6 1)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
796 @result{} t
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
797 @end example
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
798 @end defun
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
799
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
800 @defun < number &rest more-numbers
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
801 This function returns @code{t} if the sequence of its arguments is
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
802 monotonically increasing, @code{nil} otherwise.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
803
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
804 @example
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
805 (< 5 6)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
806 @result{} t
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
807 (< 5 6 6)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
808 @result{} nil
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
809 (< 5 6 7)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
810 @result{} t
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
811 @end example
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
812 @end defun
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
813
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
814 @defun <= number &rest more-numbers
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
815 This function returns @code{t} if the sequence of its arguments is
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
816 monotonically nondecreasing, @code{nil} otherwise.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
817
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
818 @example
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
819 (<= 5 6)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
820 @result{} t
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
821 (<= 5 6 6)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
822 @result{} t
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
823 (<= 5 6 5)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
824 @result{} nil
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
825 @end example
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
826 @end defun
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
827
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
828 @defun > number &rest more-numbers
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
829 This function returns @code{t} if the sequence of its arguments is
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
830 monotonically decreasing, @code{nil} otherwise.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
831 @end defun
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
832
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
833 @defun >= number &rest more-numbers
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
834 This function returns @code{t} if the sequence of its arguments is
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
835 monotonically nonincreasing, @code{nil} otherwise.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
836 @end defun
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
837
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
838 @defun max number &rest more-numbers
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
839 This function returns the largest of its arguments.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
840
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
841 @example
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
842 (max 20)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
843 @result{} 20
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
844 (max 1 2.5)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
845 @result{} 2.5
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
846 (max 1 3 2.5)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
847 @result{} 3
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
848 @end example
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
849 @end defun
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
850
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
851 @defun min number &rest more-numbers
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
852 This function returns the smallest of its arguments.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
853
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
854 @example
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
855 (min -4 1)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
856 @result{} -4
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
857 @end example
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
858 @end defun
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
859
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
860 @node Numeric Conversions
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
861 @section Numeric Conversions
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
862 @cindex rounding in conversions
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
863
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
864 To convert an integer to floating point, use the function @code{float}.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
865
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
866 @defun float number
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
867 This returns @var{number} converted to floating point.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
868 If @var{number} is already a floating point number, @code{float} returns
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
869 it unchanged.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
870 @end defun
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
871
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
872 There are four functions to convert floating point numbers to integers;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
873 they differ in how they round. These functions accept integer arguments
5252
378a34562cbe Fix style, documentation for rounding functions and multiple values.
Aidan Kehoe <kehoea@parhasard.net>
parents: 4885
diff changeset
874 also, and return such arguments unchanged. They return multiple values,
378a34562cbe Fix style, documentation for rounding functions and multiple values.
Aidan Kehoe <kehoea@parhasard.net>
parents: 4885
diff changeset
875 @pxref{(cl.info)Multiple values}.
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
876
5252
378a34562cbe Fix style, documentation for rounding functions and multiple values.
Aidan Kehoe <kehoea@parhasard.net>
parents: 4885
diff changeset
877 All these functions take optional @var{divisor} arguments, and if this
378a34562cbe Fix style, documentation for rounding functions and multiple values.
Aidan Kehoe <kehoea@parhasard.net>
parents: 4885
diff changeset
878 argument is specified, the @var{number} argument is divided by
378a34562cbe Fix style, documentation for rounding functions and multiple values.
Aidan Kehoe <kehoea@parhasard.net>
parents: 4885
diff changeset
879 @var{divisor} before the calculation is made. An @code{arith-error}
378a34562cbe Fix style, documentation for rounding functions and multiple values.
Aidan Kehoe <kehoea@parhasard.net>
parents: 4885
diff changeset
880 results if @var{divisor} is 0.
378a34562cbe Fix style, documentation for rounding functions and multiple values.
Aidan Kehoe <kehoea@parhasard.net>
parents: 4885
diff changeset
881
378a34562cbe Fix style, documentation for rounding functions and multiple values.
Aidan Kehoe <kehoea@parhasard.net>
parents: 4885
diff changeset
882 @defun truncate number &optional divisor
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
883 This returns @var{number}, converted to an integer by rounding towards
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
884 zero.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
885 @end defun
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
886
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
887 @defun floor number &optional divisor
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
888 This returns @var{number}, converted to an integer by rounding downward
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
889 (towards negative infinity).
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
890 @end defun
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
891
5252
378a34562cbe Fix style, documentation for rounding functions and multiple values.
Aidan Kehoe <kehoea@parhasard.net>
parents: 4885
diff changeset
892 @defun ceiling number &optional divisor
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
893 This returns @var{number}, converted to an integer by rounding upward
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
894 (towards positive infinity).
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
895 @end defun
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
896
5252
378a34562cbe Fix style, documentation for rounding functions and multiple values.
Aidan Kehoe <kehoea@parhasard.net>
parents: 4885
diff changeset
897 @defun round number &optional divisor
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
898 This returns @var{number}, converted to an integer by rounding towards the
5252
378a34562cbe Fix style, documentation for rounding functions and multiple values.
Aidan Kehoe <kehoea@parhasard.net>
parents: 4885
diff changeset
899 nearest integer.
378a34562cbe Fix style, documentation for rounding functions and multiple values.
Aidan Kehoe <kehoea@parhasard.net>
parents: 4885
diff changeset
900
378a34562cbe Fix style, documentation for rounding functions and multiple values.
Aidan Kehoe <kehoea@parhasard.net>
parents: 4885
diff changeset
901 Rounding a value equidistant between two integers chooses the even
378a34562cbe Fix style, documentation for rounding functions and multiple values.
Aidan Kehoe <kehoea@parhasard.net>
parents: 4885
diff changeset
902 integer. GNU Emacs and older XEmacs did not guarantee this, and the
378a34562cbe Fix style, documentation for rounding functions and multiple values.
Aidan Kehoe <kehoea@parhasard.net>
parents: 4885
diff changeset
903 direction of rounding depended on the underlying machine and the C
378a34562cbe Fix style, documentation for rounding functions and multiple values.
Aidan Kehoe <kehoea@parhasard.net>
parents: 4885
diff changeset
904 implementation.
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
905 @end defun
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
906
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
907 @node Arithmetic Operations
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
908 @section Arithmetic Operations
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
909
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
910 XEmacs Lisp provides the traditional four arithmetic operations:
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
911 addition, subtraction, multiplication, and division. Remainder and modulus
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
912 functions supplement the division functions. The functions to
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
913 add or subtract 1 are provided because they are traditional in Lisp and
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
914 commonly used.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
915
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
916 All of these functions except @code{%} return a floating point value
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
917 if any argument is floating.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
918
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
919 It is important to note that in XEmacs Lisp, arithmetic functions
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
920 do not check for overflow. Thus @code{(1+ 134217727)} may evaluate to
4885
6772ce4d982b Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents: 4678
diff changeset
921 @minus{}134217728, depending on your hardware and whether your XEmacs
6772ce4d982b Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents: 4678
diff changeset
922 supports bignums.
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
923
444
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 428
diff changeset
924 @defun 1+ number
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 428
diff changeset
925 This function returns @var{number} plus one. @var{number} may be a
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 428
diff changeset
926 number, character or marker. Markers and characters are converted to
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 428
diff changeset
927 integers.
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 428
diff changeset
928
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
929 For example,
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
930
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
931 @example
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
932 (setq foo 4)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
933 @result{} 4
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
934 (1+ foo)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
935 @result{} 5
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
936 @end example
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
937
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
938 This function is not analogous to the C operator @code{++}---it does not
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
939 increment a variable. It just computes a sum. Thus, if we continue,
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
940
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
941 @example
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
942 foo
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
943 @result{} 4
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
944 @end example
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
945
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
946 If you want to increment the variable, you must use @code{setq},
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
947 like this:
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
948
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
949 @example
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
950 (setq foo (1+ foo))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
951 @result{} 5
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
952 @end example
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
953
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
954 Now that the @code{cl} package is always available from lisp code, a
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
955 more convenient and natural way to increment a variable is
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
956 @w{@code{(incf foo)}}.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
957 @end defun
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
958
444
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 428
diff changeset
959 @defun 1- number
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 428
diff changeset
960 This function returns @var{number} minus one. @var{number} may be a
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 428
diff changeset
961 number, character or marker. Markers and characters are converted to
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 428
diff changeset
962 integers.
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
963 @end defun
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
964
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
965 @defun abs number
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
966 This returns the absolute value of @var{number}.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
967 @end defun
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
968
444
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 428
diff changeset
969 @defun + &rest numbers
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
970 This function adds its arguments together. When given no arguments,
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
971 @code{+} returns 0.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
972
444
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 428
diff changeset
973 If any of the arguments are characters or markers, they are first
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 428
diff changeset
974 converted to integers.
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 428
diff changeset
975
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
976 @example
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
977 (+)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
978 @result{} 0
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
979 (+ 1)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
980 @result{} 1
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
981 (+ 1 2 3 4)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
982 @result{} 10
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
983 @end example
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
984 @end defun
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
985
444
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 428
diff changeset
986 @defun - &optional number &rest other-numbers
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
987 The @code{-} function serves two purposes: negation and subtraction.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
988 When @code{-} has a single argument, the value is the negative of the
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
989 argument. When there are multiple arguments, @code{-} subtracts each of
444
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 428
diff changeset
990 the @var{other-numbers} from @var{number}, cumulatively. If there are
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 428
diff changeset
991 no arguments, an error is signaled.
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 428
diff changeset
992
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 428
diff changeset
993 If any of the arguments are characters or markers, they are first
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 428
diff changeset
994 converted to integers.
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
995
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
996 @example
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
997 (- 10 1 2 3 4)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
998 @result{} 0
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
999 (- 10)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1000 @result{} -10
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1001 (-)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1002 @result{} 0
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1003 @end example
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1004 @end defun
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1005
444
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 428
diff changeset
1006 @defun * &rest numbers
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1007 This function multiplies its arguments together, and returns the
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1008 product. When given no arguments, @code{*} returns 1.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1009
444
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 428
diff changeset
1010 If any of the arguments are characters or markers, they are first
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 428
diff changeset
1011 converted to integers.
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 428
diff changeset
1012
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1013 @example
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1014 (*)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1015 @result{} 1
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1016 (* 1)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1017 @result{} 1
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1018 (* 1 2 3 4)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1019 @result{} 24
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1020 @end example
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1021 @end defun
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1022
444
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 428
diff changeset
1023 @defun / dividend &rest divisors
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 428
diff changeset
1024 The @code{/} function serves two purposes: inversion and division. When
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 428
diff changeset
1025 @code{/} has a single argument, the value is the inverse of the
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 428
diff changeset
1026 argument. When there are multiple arguments, @code{/} divides
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 428
diff changeset
1027 @var{dividend} by each of the @var{divisors}, cumulatively, returning
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 428
diff changeset
1028 the quotient. If there are no arguments, an error is signaled.
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1029
444
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 428
diff changeset
1030 If none of the arguments are floats, then the result is an integer.
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1031 This means the result has to be rounded. On most machines, the result
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1032 is rounded towards zero after each division, but some machines may round
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1033 differently with negative arguments. This is because the Lisp function
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1034 @code{/} is implemented using the C division operator, which also
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1035 permits machine-dependent rounding. As a practical matter, all known
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1036 machines round in the standard fashion.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1037
444
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 428
diff changeset
1038 If any of the arguments are characters or markers, they are first
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 428
diff changeset
1039 converted to integers.
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 428
diff changeset
1040
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1041 @cindex @code{arith-error} in division
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1042 If you divide by 0, an @code{arith-error} error is signaled.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1043 (@xref{Errors}.)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1044
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1045 @example
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1046 @group
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1047 (/ 6 2)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1048 @result{} 3
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1049 @end group
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1050 (/ 5 2)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1051 @result{} 2
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1052 (/ 25 3 2)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1053 @result{} 4
444
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 428
diff changeset
1054 (/ 3.0)
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 428
diff changeset
1055 @result{} 0.3333333333333333
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1056 (/ -17 6)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1057 @result{} -2
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1058 @end example
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1059
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1060 The result of @code{(/ -17 6)} could in principle be -3 on some
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1061 machines.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1062 @end defun
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1063
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1064 @defun % dividend divisor
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1065 @cindex remainder
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1066 This function returns the integer remainder after division of @var{dividend}
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1067 by @var{divisor}. The arguments must be integers or markers.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1068
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1069 For negative arguments, the remainder is in principle machine-dependent
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1070 since the quotient is; but in practice, all known machines behave alike.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1071
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1072 An @code{arith-error} results if @var{divisor} is 0.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1073
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1074 @example
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1075 (% 9 4)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1076 @result{} 1
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1077 (% -9 4)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1078 @result{} -1
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1079 (% 9 -4)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1080 @result{} 1
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1081 (% -9 -4)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1082 @result{} -1
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1083 @end example
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1084
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1085 For any two integers @var{dividend} and @var{divisor},
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1086
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1087 @example
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1088 @group
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1089 (+ (% @var{dividend} @var{divisor})
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1090 (* (/ @var{dividend} @var{divisor}) @var{divisor}))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1091 @end group
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1092 @end example
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1093
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1094 @noindent
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1095 always equals @var{dividend}.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1096 @end defun
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1097
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1098 @defun mod dividend divisor
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1099 @cindex modulus
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1100 This function returns the value of @var{dividend} modulo @var{divisor};
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1101 in other words, the remainder after division of @var{dividend}
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1102 by @var{divisor}, but with the same sign as @var{divisor}.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1103 The arguments must be numbers or markers.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1104
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1105 Unlike @code{%}, @code{mod} returns a well-defined result for negative
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1106 arguments. It also permits floating point arguments; it rounds the
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1107 quotient downward (towards minus infinity) to an integer, and uses that
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1108 quotient to compute the remainder.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1109
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1110 An @code{arith-error} results if @var{divisor} is 0.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1111
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1112 @example
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1113 @group
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1114 (mod 9 4)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1115 @result{} 1
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1116 @end group
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1117 @group
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1118 (mod -9 4)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1119 @result{} 3
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1120 @end group
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1121 @group
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1122 (mod 9 -4)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1123 @result{} -3
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1124 @end group
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1125 @group
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1126 (mod -9 -4)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1127 @result{} -1
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1128 @end group
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1129 @group
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1130 (mod 5.5 2.5)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1131 @result{} .5
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1132 @end group
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1133 @end example
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1134
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1135 For any two numbers @var{dividend} and @var{divisor},
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1136
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1137 @example
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1138 @group
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1139 (+ (mod @var{dividend} @var{divisor})
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1140 (* (floor @var{dividend} @var{divisor}) @var{divisor}))
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1141 @end group
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1142 @end example
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1143
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1144 @noindent
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1145 always equals @var{dividend}, subject to rounding error if either
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1146 argument is floating point. For @code{floor}, see @ref{Numeric
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1147 Conversions}.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1148 @end defun
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1149
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1150 @node Rounding Operations
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1151 @section Rounding Operations
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1152 @cindex rounding without conversion
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1153
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1154 The functions @code{ffloor}, @code{fceiling}, @code{fround} and
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1155 @code{ftruncate} take a floating point argument and return a floating
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1156 point result whose value is a nearby integer. @code{ffloor} returns the
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1157 nearest integer below; @code{fceiling}, the nearest integer above;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1158 @code{ftruncate}, the nearest integer in the direction towards zero;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1159 @code{fround}, the nearest integer.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1160
5252
378a34562cbe Fix style, documentation for rounding functions and multiple values.
Aidan Kehoe <kehoea@parhasard.net>
parents: 4885
diff changeset
1161 All these functions take optional @var{divisor} arguments, and if this
378a34562cbe Fix style, documentation for rounding functions and multiple values.
Aidan Kehoe <kehoea@parhasard.net>
parents: 4885
diff changeset
1162 argument is specified, the @var{number} argument is divided by
378a34562cbe Fix style, documentation for rounding functions and multiple values.
Aidan Kehoe <kehoea@parhasard.net>
parents: 4885
diff changeset
1163 @var{divisor} before the calculation is made. An @code{arith-error}
378a34562cbe Fix style, documentation for rounding functions and multiple values.
Aidan Kehoe <kehoea@parhasard.net>
parents: 4885
diff changeset
1164 results if @var{divisor} is 0. Also, they return multiple values,
378a34562cbe Fix style, documentation for rounding functions and multiple values.
Aidan Kehoe <kehoea@parhasard.net>
parents: 4885
diff changeset
1165 @pxref{(cl.info)Multiple values}; the second value is the remainder.
378a34562cbe Fix style, documentation for rounding functions and multiple values.
Aidan Kehoe <kehoea@parhasard.net>
parents: 4885
diff changeset
1166
378a34562cbe Fix style, documentation for rounding functions and multiple values.
Aidan Kehoe <kehoea@parhasard.net>
parents: 4885
diff changeset
1167 @defun ffloor number &optional divisor
444
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 428
diff changeset
1168 This function rounds @var{number} to the next lower integral value, and
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1169 returns that value as a floating point number.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1170 @end defun
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1171
5252
378a34562cbe Fix style, documentation for rounding functions and multiple values.
Aidan Kehoe <kehoea@parhasard.net>
parents: 4885
diff changeset
1172 @defun fceiling number &optional divisor
444
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 428
diff changeset
1173 This function rounds @var{number} to the next higher integral value, and
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1174 returns that value as a floating point number.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1175 @end defun
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1176
5252
378a34562cbe Fix style, documentation for rounding functions and multiple values.
Aidan Kehoe <kehoea@parhasard.net>
parents: 4885
diff changeset
1177 @defun ftruncate number &optional divisor
444
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 428
diff changeset
1178 This function rounds @var{number} towards zero to an integral value, and
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1179 returns that value as a floating point number.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1180 @end defun
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1181
5252
378a34562cbe Fix style, documentation for rounding functions and multiple values.
Aidan Kehoe <kehoea@parhasard.net>
parents: 4885
diff changeset
1182 @defun fround number &optional divisor
444
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 428
diff changeset
1183 This function rounds @var{number} to the nearest integral value,
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1184 and returns that value as a floating point number.
5252
378a34562cbe Fix style, documentation for rounding functions and multiple values.
Aidan Kehoe <kehoea@parhasard.net>
parents: 4885
diff changeset
1185
378a34562cbe Fix style, documentation for rounding functions and multiple values.
Aidan Kehoe <kehoea@parhasard.net>
parents: 4885
diff changeset
1186 Rounding a value equidistant between two integral values chooses the
378a34562cbe Fix style, documentation for rounding functions and multiple values.
Aidan Kehoe <kehoea@parhasard.net>
parents: 4885
diff changeset
1187 even value. While this is specified by Common Lisp, GNU Emacs and older
378a34562cbe Fix style, documentation for rounding functions and multiple values.
Aidan Kehoe <kehoea@parhasard.net>
parents: 4885
diff changeset
1188 XEmacs did not make this guarantee, and the direction of rounding
378a34562cbe Fix style, documentation for rounding functions and multiple values.
Aidan Kehoe <kehoea@parhasard.net>
parents: 4885
diff changeset
1189 depended on the underlying machine and the C implementation.
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1190 @end defun
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1191
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1192 @node Bitwise Operations
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1193 @section Bitwise Operations on Integers
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1194
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1195 In a computer, an integer is represented as a binary number, a
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1196 sequence of @dfn{bits} (digits which are either zero or one). A bitwise
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1197 operation acts on the individual bits of such a sequence. For example,
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1198 @dfn{shifting} moves the whole sequence left or right one or more places,
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1199 reproducing the same pattern ``moved over''.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1200
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1201 The bitwise operations in XEmacs Lisp apply only to integers.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1202
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1203 @defun lsh integer1 count
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1204 @cindex logical shift
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1205 @code{lsh}, which is an abbreviation for @dfn{logical shift}, shifts the
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1206 bits in @var{integer1} to the left @var{count} places, or to the right
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1207 if @var{count} is negative, bringing zeros into the vacated bits. If
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1208 @var{count} is negative, @code{lsh} shifts zeros into the leftmost
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1209 (most-significant) bit, producing a positive result even if
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1210 @var{integer1} is negative. Contrast this with @code{ash}, below.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1211
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1212 Here are two examples of @code{lsh}, shifting a pattern of bits one
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1213 place to the left. We show only the low-order eight bits of the binary
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1214 pattern; the rest are all zero.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1215
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1216 @example
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1217 @group
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1218 (lsh 5 1)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1219 @result{} 10
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1220 ;; @r{Decimal 5 becomes decimal 10.}
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1221 00000101 @result{} 00001010
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1222
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1223 (lsh 7 1)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1224 @result{} 14
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1225 ;; @r{Decimal 7 becomes decimal 14.}
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1226 00000111 @result{} 00001110
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1227 @end group
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1228 @end example
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1229
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1230 @noindent
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1231 As the examples illustrate, shifting the pattern of bits one place to
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1232 the left produces a number that is twice the value of the previous
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1233 number.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1234
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1235 Shifting a pattern of bits two places to the left produces results
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1236 like this (with 8-bit binary numbers):
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1237
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1238 @example
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1239 @group
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1240 (lsh 3 2)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1241 @result{} 12
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1242 ;; @r{Decimal 3 becomes decimal 12.}
444
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 428
diff changeset
1243 00000011 @result{} 00001100
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1244 @end group
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1245 @end example
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1246
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1247 On the other hand, shifting one place to the right looks like this:
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1248
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1249 @example
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1250 @group
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1251 (lsh 6 -1)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1252 @result{} 3
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1253 ;; @r{Decimal 6 becomes decimal 3.}
444
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 428
diff changeset
1254 00000110 @result{} 00000011
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1255 @end group
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1256
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1257 @group
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1258 (lsh 5 -1)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1259 @result{} 2
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1260 ;; @r{Decimal 5 becomes decimal 2.}
444
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 428
diff changeset
1261 00000101 @result{} 00000010
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1262 @end group
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1263 @end example
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1264
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1265 @noindent
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1266 As the example illustrates, shifting one place to the right divides the
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1267 value of a positive integer by two, rounding downward.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1268
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1269 The function @code{lsh}, like all XEmacs Lisp arithmetic functions, does
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1270 not check for overflow, so shifting left can discard significant bits
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1271 and change the sign of the number. For example, left shifting
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1272 134,217,727 produces @minus{}2 on a 28-bit machine:
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1273
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1274 @example
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1275 (lsh 134217727 1) ; @r{left shift}
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1276 @result{} -2
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1277 @end example
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1278
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1279 In binary, in the 28-bit implementation, the argument looks like this:
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1280
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1281 @example
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1282 @group
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1283 ;; @r{Decimal 134,217,727}
444
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 428
diff changeset
1284 0111 1111 1111 1111 1111 1111 1111
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1285 @end group
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1286 @end example
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1287
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1288 @noindent
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1289 which becomes the following when left shifted:
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1290
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1291 @example
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1292 @group
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1293 ;; @r{Decimal @minus{}2}
444
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 428
diff changeset
1294 1111 1111 1111 1111 1111 1111 1110
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1295 @end group
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1296 @end example
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1297 @end defun
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1298
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1299 @defun ash integer1 count
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1300 @cindex arithmetic shift
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1301 @code{ash} (@dfn{arithmetic shift}) shifts the bits in @var{integer1}
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1302 to the left @var{count} places, or to the right if @var{count}
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1303 is negative.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1304
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1305 @code{ash} gives the same results as @code{lsh} except when
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1306 @var{integer1} and @var{count} are both negative. In that case,
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1307 @code{ash} puts ones in the empty bit positions on the left, while
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1308 @code{lsh} puts zeros in those bit positions.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1309
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1310 Thus, with @code{ash}, shifting the pattern of bits one place to the right
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1311 looks like this:
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1312
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1313 @example
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1314 @group
444
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 428
diff changeset
1315 (ash -6 -1) @result{} -3
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1316 ;; @r{Decimal @minus{}6 becomes decimal @minus{}3.}
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1317 1111 1111 1111 1111 1111 1111 1010
444
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 428
diff changeset
1318 @result{}
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1319 1111 1111 1111 1111 1111 1111 1101
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1320 @end group
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1321 @end example
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1322
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1323 In contrast, shifting the pattern of bits one place to the right with
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1324 @code{lsh} looks like this:
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1325
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1326 @example
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1327 @group
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1328 (lsh -6 -1) @result{} 134217725
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1329 ;; @r{Decimal @minus{}6 becomes decimal 134,217,725.}
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1330 1111 1111 1111 1111 1111 1111 1010
444
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 428
diff changeset
1331 @result{}
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1332 0111 1111 1111 1111 1111 1111 1101
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1333 @end group
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1334 @end example
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1335
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1336 Here are other examples:
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1337
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1338 @c !!! Check if lined up in smallbook format! XDVI shows problem
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1339 @c with smallbook but not with regular book! --rjc 16mar92
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1340 @smallexample
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1341 @group
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1342 ; @r{ 28-bit binary values}
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1343
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1344 (lsh 5 2) ; 5 = @r{0000 0000 0000 0000 0000 0000 0101}
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1345 @result{} 20 ; = @r{0000 0000 0000 0000 0000 0001 0100}
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1346 @end group
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1347 @group
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1348 (ash 5 2)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1349 @result{} 20
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1350 (lsh -5 2) ; -5 = @r{1111 1111 1111 1111 1111 1111 1011}
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1351 @result{} -20 ; = @r{1111 1111 1111 1111 1111 1110 1100}
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1352 (ash -5 2)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1353 @result{} -20
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1354 @end group
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1355 @group
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1356 (lsh 5 -2) ; 5 = @r{0000 0000 0000 0000 0000 0000 0101}
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1357 @result{} 1 ; = @r{0000 0000 0000 0000 0000 0000 0001}
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1358 @end group
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1359 @group
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1360 (ash 5 -2)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1361 @result{} 1
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1362 @end group
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1363 @group
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1364 (lsh -5 -2) ; -5 = @r{1111 1111 1111 1111 1111 1111 1011}
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1365 @result{} 4194302 ; = @r{0011 1111 1111 1111 1111 1111 1110}
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1366 @end group
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1367 @group
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1368 (ash -5 -2) ; -5 = @r{1111 1111 1111 1111 1111 1111 1011}
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1369 @result{} -2 ; = @r{1111 1111 1111 1111 1111 1111 1110}
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1370 @end group
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1371 @end smallexample
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1372 @end defun
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1373
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1374 @defun logand &rest ints-or-markers
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1375 @cindex logical and
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1376 @cindex bitwise and
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1377 This function returns the ``logical and'' of the arguments: the
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1378 @var{n}th bit is set in the result if, and only if, the @var{n}th bit is
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1379 set in all the arguments. (``Set'' means that the value of the bit is 1
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1380 rather than 0.)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1381
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1382 For example, using 4-bit binary numbers, the ``logical and'' of 13 and
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1383 12 is 12: 1101 combined with 1100 produces 1100.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1384 In both the binary numbers, the leftmost two bits are set (i.e., they
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1385 are 1's), so the leftmost two bits of the returned value are set.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1386 However, for the rightmost two bits, each is zero in at least one of
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1387 the arguments, so the rightmost two bits of the returned value are 0's.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1388
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1389 @noindent
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1390 Therefore,
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1391
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1392 @example
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1393 @group
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1394 (logand 13 12)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1395 @result{} 12
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1396 @end group
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1397 @end example
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1398
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1399 If @code{logand} is not passed any argument, it returns a value of
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1400 @minus{}1. This number is an identity element for @code{logand}
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1401 because its binary representation consists entirely of ones. If
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1402 @code{logand} is passed just one argument, it returns that argument.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1403
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1404 @smallexample
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1405 @group
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1406 ; @r{ 28-bit binary values}
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1407
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1408 (logand 14 13) ; 14 = @r{0000 0000 0000 0000 0000 0000 1110}
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1409 ; 13 = @r{0000 0000 0000 0000 0000 0000 1101}
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1410 @result{} 12 ; 12 = @r{0000 0000 0000 0000 0000 0000 1100}
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1411 @end group
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1412
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1413 @group
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1414 (logand 14 13 4) ; 14 = @r{0000 0000 0000 0000 0000 0000 1110}
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1415 ; 13 = @r{0000 0000 0000 0000 0000 0000 1101}
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1416 ; 4 = @r{0000 0000 0000 0000 0000 0000 0100}
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1417 @result{} 4 ; 4 = @r{0000 0000 0000 0000 0000 0000 0100}
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1418 @end group
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1419
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1420 @group
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1421 (logand)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1422 @result{} -1 ; -1 = @r{1111 1111 1111 1111 1111 1111 1111}
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1423 @end group
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1424 @end smallexample
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1425 @end defun
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1426
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1427 @defun logior &rest ints-or-markers
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1428 @cindex logical inclusive or
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1429 @cindex bitwise or
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1430 This function returns the ``inclusive or'' of its arguments: the @var{n}th bit
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1431 is set in the result if, and only if, the @var{n}th bit is set in at least
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1432 one of the arguments. If there are no arguments, the result is zero,
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1433 which is an identity element for this operation. If @code{logior} is
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1434 passed just one argument, it returns that argument.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1435
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1436 @smallexample
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1437 @group
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1438 ; @r{ 28-bit binary values}
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1439
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1440 (logior 12 5) ; 12 = @r{0000 0000 0000 0000 0000 0000 1100}
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1441 ; 5 = @r{0000 0000 0000 0000 0000 0000 0101}
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1442 @result{} 13 ; 13 = @r{0000 0000 0000 0000 0000 0000 1101}
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1443 @end group
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1444
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1445 @group
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1446 (logior 12 5 7) ; 12 = @r{0000 0000 0000 0000 0000 0000 1100}
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1447 ; 5 = @r{0000 0000 0000 0000 0000 0000 0101}
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1448 ; 7 = @r{0000 0000 0000 0000 0000 0000 0111}
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1449 @result{} 15 ; 15 = @r{0000 0000 0000 0000 0000 0000 1111}
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1450 @end group
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1451 @end smallexample
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1452 @end defun
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1453
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1454 @defun logxor &rest ints-or-markers
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1455 @cindex bitwise exclusive or
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1456 @cindex logical exclusive or
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1457 This function returns the ``exclusive or'' of its arguments: the
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1458 @var{n}th bit is set in the result if, and only if, the @var{n}th bit is
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1459 set in an odd number of the arguments. If there are no arguments, the
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1460 result is 0, which is an identity element for this operation. If
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1461 @code{logxor} is passed just one argument, it returns that argument.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1462
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1463 @smallexample
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1464 @group
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1465 ; @r{ 28-bit binary values}
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1466
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1467 (logxor 12 5) ; 12 = @r{0000 0000 0000 0000 0000 0000 1100}
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1468 ; 5 = @r{0000 0000 0000 0000 0000 0000 0101}
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1469 @result{} 9 ; 9 = @r{0000 0000 0000 0000 0000 0000 1001}
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1470 @end group
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1471
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1472 @group
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1473 (logxor 12 5 7) ; 12 = @r{0000 0000 0000 0000 0000 0000 1100}
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1474 ; 5 = @r{0000 0000 0000 0000 0000 0000 0101}
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1475 ; 7 = @r{0000 0000 0000 0000 0000 0000 0111}
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1476 @result{} 14 ; 14 = @r{0000 0000 0000 0000 0000 0000 1110}
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1477 @end group
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1478 @end smallexample
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1479 @end defun
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1480
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1481 @defun lognot integer
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1482 @cindex logical not
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1483 @cindex bitwise not
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1484 This function returns the logical complement of its argument: the @var{n}th
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1485 bit is one in the result if, and only if, the @var{n}th bit is zero in
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1486 @var{integer}, and vice-versa.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1487
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1488 @example
444
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 428
diff changeset
1489 (lognot 5)
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1490 @result{} -6
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1491 ;; 5 = @r{0000 0000 0000 0000 0000 0000 0101}
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1492 ;; @r{becomes}
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1493 ;; -6 = @r{1111 1111 1111 1111 1111 1111 1010}
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1494 @end example
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1495 @end defun
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1496
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1497 @node Math Functions
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1498 @section Standard Mathematical Functions
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1499 @cindex transcendental functions
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1500 @cindex mathematical functions
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1501
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1502 These mathematical functions are available if floating point is
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1503 supported (which is the normal state of affairs). They allow integers
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1504 as well as floating point numbers as arguments.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1505
444
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 428
diff changeset
1506 @defun sin number
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 428
diff changeset
1507 @defunx cos number
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 428
diff changeset
1508 @defunx tan number
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1509 These are the ordinary trigonometric functions, with argument measured
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1510 in radians.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1511 @end defun
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1512
444
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 428
diff changeset
1513 @defun asin number
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 428
diff changeset
1514 The value of @code{(asin @var{number})} is a number between @minus{}pi/2
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 428
diff changeset
1515 and pi/2 (inclusive) whose sine is @var{number}; if, however, @var{number}
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1516 is out of range (outside [-1, 1]), then the result is a NaN.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1517 @end defun
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1518
444
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 428
diff changeset
1519 @defun acos number
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 428
diff changeset
1520 The value of @code{(acos @var{number})} is a number between 0 and pi
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 428
diff changeset
1521 (inclusive) whose cosine is @var{number}; if, however, @var{number}
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1522 is out of range (outside [-1, 1]), then the result is a NaN.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1523 @end defun
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1524
444
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 428
diff changeset
1525 @defun atan number &optional number2
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 428
diff changeset
1526 The value of @code{(atan @var{number})} is a number between @minus{}pi/2
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 428
diff changeset
1527 and pi/2 (exclusive) whose tangent is @var{number}.
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 428
diff changeset
1528
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 428
diff changeset
1529 If optional argument @var{number2} is supplied, the function returns
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 428
diff changeset
1530 @code{atan2(@var{number},@var{number2})}.
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1531 @end defun
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1532
444
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 428
diff changeset
1533 @defun sinh number
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 428
diff changeset
1534 @defunx cosh number
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 428
diff changeset
1535 @defunx tanh number
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1536 These are the ordinary hyperbolic trigonometric functions.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1537 @end defun
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1538
444
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 428
diff changeset
1539 @defun asinh number
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 428
diff changeset
1540 @defunx acosh number
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 428
diff changeset
1541 @defunx atanh number
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1542 These are the inverse hyperbolic trigonometric functions.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1543 @end defun
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1544
444
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 428
diff changeset
1545 @defun exp number
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1546 This is the exponential function; it returns @i{e} to the power
444
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 428
diff changeset
1547 @var{number}. @i{e} is a fundamental mathematical constant also called the
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1548 base of natural logarithms.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1549 @end defun
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1550
444
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 428
diff changeset
1551 @defun log number &optional base
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 428
diff changeset
1552 This function returns the logarithm of @var{number}, with base @var{base}.
1738
f43f9ca6c7d9 [xemacs-hg @ 2003-10-10 12:39:27 by stephent]
stephent
parents: 444
diff changeset
1553 If you don't specify @var{base}, the base @code{e} is used. If @var{number}
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1554 is negative, the result is a NaN.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1555 @end defun
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1556
444
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 428
diff changeset
1557 @defun log10 number
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 428
diff changeset
1558 This function returns the logarithm of @var{number}, with base 10. If
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 428
diff changeset
1559 @var{number} is negative, the result is a NaN. @code{(log10 @var{x})}
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1560 @equiv{} @code{(log @var{x} 10)}, at least approximately.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1561 @end defun
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1562
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1563 @defun expt x y
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1564 This function returns @var{x} raised to power @var{y}. If both
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1565 arguments are integers and @var{y} is positive, the result is an
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1566 integer; in this case, it is truncated to fit the range of possible
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1567 integer values.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1568 @end defun
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1569
444
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 428
diff changeset
1570 @defun sqrt number
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 428
diff changeset
1571 This returns the square root of @var{number}. If @var{number} is negative,
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1572 the value is a NaN.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1573 @end defun
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1574
444
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 428
diff changeset
1575 @defun cube-root number
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 428
diff changeset
1576 This returns the cube root of @var{number}.
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1577 @end defun
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1578
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1579 @node Random Numbers
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1580 @section Random Numbers
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1581 @cindex random numbers
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1582
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1583 A deterministic computer program cannot generate true random numbers.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1584 For most purposes, @dfn{pseudo-random numbers} suffice. A series of
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1585 pseudo-random numbers is generated in a deterministic fashion. The
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1586 numbers are not truly random, but they have certain properties that
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1587 mimic a random series. For example, all possible values occur equally
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1588 often in a pseudo-random series.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1589
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1590 In XEmacs, pseudo-random numbers are generated from a ``seed'' number.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1591 Starting from any given seed, the @code{random} function always
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1592 generates the same sequence of numbers. XEmacs always starts with the
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1593 same seed value, so the sequence of values of @code{random} is actually
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1594 the same in each XEmacs run! For example, in one operating system, the
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1595 first call to @code{(random)} after you start XEmacs always returns
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1596 -1457731, and the second one always returns -7692030. This
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1597 repeatability is helpful for debugging.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1598
2090
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
1599 If you want reasonably unpredictable random numbers, execute
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
1600 @code{(random t)}. This chooses a new seed based on the current time of
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
1601 day and on XEmacs's process @sc{id} number. (This is not
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
1602 cryptographically strong, it's just hard for a @emph{human} to
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
1603 anticipate.)
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1604
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1605 @defun random &optional limit
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1606 This function returns a pseudo-random integer. Repeated calls return a
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1607 series of pseudo-random integers.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1608
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1609 If @var{limit} is a positive integer, the value is chosen to be
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1610 nonnegative and less than @var{limit}.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1611
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1612 If @var{limit} is @code{t}, it means to choose a new seed based on the
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1613 current time of day and on XEmacs's process @sc{id} number.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1614 @c "XEmacs'" is incorrect usage!
2090
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
1615 @end defun
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1616
2090
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
1617 The range of random is implementation-dependent. On any machine, the
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
1618 result of @code{(random)} is an arbitrary fixnum, so on 32-bit
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
1619 architectures it is normally in the range -2^30 (inclusive) to +2^30
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
1620 (exclusive). With the optional integer argument @var{limit}, the result
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
1621 is in the range 0 (inclusive) to @var{limit} (exclusive). Note this is
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
1622 regardless of the presence of the bignum extension.
e52c5a5c6a7d [xemacs-hg @ 2004-05-21 01:21:08 by stephent]
stephent
parents: 2033
diff changeset
1623