annotate lispref/numbers.texi @ 19860:c17fd465ea95 libc-970911 libc-970912 libc-970913 libc-970914 libc-970915 libc-970916 libc-970917 libc-970918 libc-970919 libc-970920 libc-970921 libc-970922 libc-970923 libc-970924 libc-970925 libc-970926 libc-970927 libc-970928 libc-970929 libc-970930 libc-971001 libc-971018 libc-971019 libc-971020 libc-971021 libc-971022 libc-971023 libc-971024 libc-971025 libc-971026 libc-971027 libc-971028 libc-971029 libc-971030 libc-971031 libc-971101 libc-971102 libc-971103 libc-971104 libc-971105 libc-971106 libc-971107 libc-971108 libc-971109 libc-971110 libc-971111 libc-971112 libc-971113 libc-971114 libc-971115 libc-971116 libc-971117 libc-971118 libc-971120 libc-971121 libc-971122 libc-971123 libc-971124 libc-971125 libc-971126 libc-971127 libc-971128 libc-971129 libc-971130 libc-971201 libc-971203 libc-971204 libc-971205 libc-971206 libc-971207 libc-971208 libc-971209 libc-971210 libc-971211 libc-971212 libc-971213 libc-971214 libc-971217 libc-971218 libc-971219 libc-971220 libc-971221 libc-971222 libc-971223 libc-971224 libc-971225 libc-971226 libc-971227 libc-971228 libc-971229 libc-971230 libc-971231 libc-980103 libc-980104 libc-980105 libc-980106 libc-980107 libc-980108 libc-980109 libc-980110 libc-980111 libc-980112 libc-980114 libc-980115 libc-980116 libc-980117 libc-980118 libc-980119 libc-980120 libc-980121 libc-980122 libc-980123 libc-980124 libc-980125 libc-980126 libc-980127 libc-980128

typos.
author Jeff Law <law@redhat.com>
date Wed, 10 Sep 1997 21:16:20 +0000
parents 981e116b4ac6
children 66d807bdc5b4
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1 @c -*-texinfo-*-
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2 @c This is part of the GNU Emacs Lisp Reference Manual.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
3 @c Copyright (C) 1990, 1991, 1992, 1993, 1994 Free Software Foundation, Inc.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
4 @c See the file elisp.texi for copying conditions.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
5 @setfilename ../info/numbers
7115
9a9e88e65617 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 6510
diff changeset
6 @node Numbers, Strings and Characters, Lisp Data Types, Top
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
7 @chapter Numbers
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
8 @cindex integers
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
9 @cindex numbers
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
10
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
11 GNU Emacs supports two numeric data types: @dfn{integers} and
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
12 @dfn{floating point numbers}. Integers are whole numbers such as
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
13 @minus{}3, 0, 7, 13, and 511. Their values are exact. Floating point
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
14 numbers are numbers with fractional parts, such as @minus{}4.5, 0.0, or
7115
9a9e88e65617 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 6510
diff changeset
15 2.71828. They can also be expressed in exponential notation:
9a9e88e65617 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 6510
diff changeset
16 1.5e2 equals 150; in this example, @samp{e2} stands for ten to the
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
17 second power, and is multiplied by 1.5. Floating point values are not
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
18 exact; they have a fixed, limited amount of precision.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
19
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
20 Support for floating point numbers is a new feature in Emacs 19, and it
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
21 is controlled by a separate compilation option, so you may encounter a site
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
22 where Emacs does not support them.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
23
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
24 @menu
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
25 * Integer Basics:: Representation and range of integers.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
26 * Float Basics:: Representation and range of floating point.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
27 * Predicates on Numbers:: Testing for numbers.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
28 * Comparison of Numbers:: Equality and inequality predicates.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
29 * Numeric Conversions:: Converting float to integer and vice versa.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
30 * Arithmetic Operations:: How to add, subtract, multiply and divide.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
31 * Rounding Operations:: Explicitly rounding floating point numbers.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
32 * Bitwise Operations:: Logical and, or, not, shifting.
11230
c6b70cdf844e Don't call the special math functions "transcendental".
Richard M. Stallman <rms@gnu.org>
parents: 10558
diff changeset
33 * Math Functions:: Trig, exponential and logarithmic functions.
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
34 * Random Numbers:: Obtaining random integers, predictable or not.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
35 @end menu
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
36
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
37 @node Integer Basics
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
38 @comment node-name, next, previous, up
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
39 @section Integer Basics
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
40
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
41 The range of values for an integer depends on the machine. The
10558
fbfd717ff79b Fix integer width changes.
Richard M. Stallman <rms@gnu.org>
parents: 10306
diff changeset
42 minimum range is @minus{}134217728 to 134217727 (28 bits; i.e.,
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
43 @ifinfo
10306
89f8d7f3bd73 Integers now at least 28 bits.
Richard M. Stallman <rms@gnu.org>
parents: 8017
diff changeset
44 -2**27
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
45 @end ifinfo
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
46 @tex
10558
fbfd717ff79b Fix integer width changes.
Richard M. Stallman <rms@gnu.org>
parents: 10306
diff changeset
47 $-2^{27}$
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
48 @end tex
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
49 to
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
50 @ifinfo
10558
fbfd717ff79b Fix integer width changes.
Richard M. Stallman <rms@gnu.org>
parents: 10306
diff changeset
51 2**27 - 1),
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
52 @end ifinfo
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
53 @tex
10558
fbfd717ff79b Fix integer width changes.
Richard M. Stallman <rms@gnu.org>
parents: 10306
diff changeset
54 $2^{27}-1$),
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
55 @end tex
10558
fbfd717ff79b Fix integer width changes.
Richard M. Stallman <rms@gnu.org>
parents: 10306
diff changeset
56 but some machines may provide a wider range. Many examples in this
fbfd717ff79b Fix integer width changes.
Richard M. Stallman <rms@gnu.org>
parents: 10306
diff changeset
57 chapter assume an integer has 28 bits.
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
58 @cindex overflow
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
59
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
60 The Lisp reader reads an integer as a sequence of digits with optional
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
61 initial sign and optional final period.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
62
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
63 @example
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
64 1 ; @r{The integer 1.}
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
65 1. ; @r{The integer 1.}
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
66 +1 ; @r{Also the integer 1.}
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
67 -1 ; @r{The integer @minus{}1.}
10306
89f8d7f3bd73 Integers now at least 28 bits.
Richard M. Stallman <rms@gnu.org>
parents: 8017
diff changeset
68 268435457 ; @r{Also the integer 1, due to overflow.}
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
69 0 ; @r{The integer 0.}
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
70 -0 ; @r{The integer 0.}
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
71 @end example
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
72
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
73 To understand how various functions work on integers, especially the
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
74 bitwise operators (@pxref{Bitwise Operations}), it is often helpful to
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
75 view the numbers in their binary form.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
76
10306
89f8d7f3bd73 Integers now at least 28 bits.
Richard M. Stallman <rms@gnu.org>
parents: 8017
diff changeset
77 In 28-bit binary, the decimal integer 5 looks like this:
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
78
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
79 @example
10306
89f8d7f3bd73 Integers now at least 28 bits.
Richard M. Stallman <rms@gnu.org>
parents: 8017
diff changeset
80 0000 0000 0000 0000 0000 0000 0101
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
81 @end example
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
82
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
83 @noindent
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
84 (We have inserted spaces between groups of 4 bits, and two spaces
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
85 between groups of 8 bits, to make the binary integer easier to read.)
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
86
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
87 The integer @minus{}1 looks like this:
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
88
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
89 @example
10306
89f8d7f3bd73 Integers now at least 28 bits.
Richard M. Stallman <rms@gnu.org>
parents: 8017
diff changeset
90 1111 1111 1111 1111 1111 1111 1111
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
91 @end example
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
92
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
93 @noindent
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
94 @cindex two's complement
10306
89f8d7f3bd73 Integers now at least 28 bits.
Richard M. Stallman <rms@gnu.org>
parents: 8017
diff changeset
95 @minus{}1 is represented as 28 ones. (This is called @dfn{two's
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
96 complement} notation.)
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
97
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
98 The negative integer, @minus{}5, is creating by subtracting 4 from
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
99 @minus{}1. In binary, the decimal integer 4 is 100. Consequently,
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
100 @minus{}5 looks like this:
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
101
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
102 @example
10306
89f8d7f3bd73 Integers now at least 28 bits.
Richard M. Stallman <rms@gnu.org>
parents: 8017
diff changeset
103 1111 1111 1111 1111 1111 1111 1011
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
104 @end example
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
105
16736
981e116b4ac6 Minor cleanups for overfull hboxes.
Richard M. Stallman <rms@gnu.org>
parents: 12282
diff changeset
106 In this implementation, the largest 28-bit binary integer value is
981e116b4ac6 Minor cleanups for overfull hboxes.
Richard M. Stallman <rms@gnu.org>
parents: 12282
diff changeset
107 134,217,727 in decimal. In binary, it looks like this:
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
108
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
109 @example
10306
89f8d7f3bd73 Integers now at least 28 bits.
Richard M. Stallman <rms@gnu.org>
parents: 8017
diff changeset
110 0111 1111 1111 1111 1111 1111 1111
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
111 @end example
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
112
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
113 Since the arithmetic functions do not check whether integers go
10306
89f8d7f3bd73 Integers now at least 28 bits.
Richard M. Stallman <rms@gnu.org>
parents: 8017
diff changeset
114 outside their range, when you add 1 to 134,217,727, the value is the
89f8d7f3bd73 Integers now at least 28 bits.
Richard M. Stallman <rms@gnu.org>
parents: 8017
diff changeset
115 negative integer @minus{}134,217,728:
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
116
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
117 @example
10306
89f8d7f3bd73 Integers now at least 28 bits.
Richard M. Stallman <rms@gnu.org>
parents: 8017
diff changeset
118 (+ 1 134217727)
89f8d7f3bd73 Integers now at least 28 bits.
Richard M. Stallman <rms@gnu.org>
parents: 8017
diff changeset
119 @result{} -134217728
89f8d7f3bd73 Integers now at least 28 bits.
Richard M. Stallman <rms@gnu.org>
parents: 8017
diff changeset
120 @result{} 1000 0000 0000 0000 0000 0000 0000
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
121 @end example
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
122
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
123 Many of the following functions accept markers for arguments as well
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
124 as integers. (@xref{Markers}.) More precisely, the actual arguments to
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
125 such functions may be either integers or markers, which is why we often
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
126 give these arguments the name @var{int-or-marker}. When the argument
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
127 value is a marker, its position value is used and its buffer is ignored.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
128
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
129 @ignore
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
130 In version 19, except where @emph{integer} is specified as an
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
131 argument, all of the functions for markers and integers also work for
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
132 floating point numbers.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
133 @end ignore
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
134
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
135 @node Float Basics
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
136 @section Floating Point Basics
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
137
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
138 @cindex @code{LISP_FLOAT_TYPE} configuration macro
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
139 Emacs version 19 supports floating point numbers, if compiled with the
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
140 macro @code{LISP_FLOAT_TYPE} defined. The precise range of floating
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
141 point numbers is machine-specific; it is the same as the range of the C
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
142 data type @code{double} on the machine in question.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
143
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
144 The printed representation for floating point numbers requires either
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
145 a decimal point (with at least one digit following), an exponent, or
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
146 both. For example, @samp{1500.0}, @samp{15e2}, @samp{15.0e2},
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
147 @samp{1.5e3}, and @samp{.15e4} are five ways of writing a floating point
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
148 number whose value is 1500. They are all equivalent. You can also use
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
149 a minus sign to write negative floating point numbers, as in
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
150 @samp{-1.0}.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
151
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
152 @cindex IEEE floating point
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
153 @cindex positive infinity
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
154 @cindex negative infinity
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
155 @cindex infinity
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
156 @cindex NaN
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
157 Most modern computers support the IEEE floating point standard, which
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
158 provides for positive infinity and negative infinity as floating point
7115
9a9e88e65617 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 6510
diff changeset
159 values. It also provides for a class of values called NaN or
9a9e88e65617 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 6510
diff changeset
160 ``not-a-number''; numerical functions return such values in cases where
9a9e88e65617 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 6510
diff changeset
161 there is no correct answer. For example, @code{(sqrt -1.0)} returns a
9a9e88e65617 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 6510
diff changeset
162 NaN. For practical purposes, there's no significant difference between
9a9e88e65617 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 6510
diff changeset
163 different NaN values in Emacs Lisp, and there's no rule for precisely
9a9e88e65617 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 6510
diff changeset
164 which NaN value should be used in a particular case, so this manual
9a9e88e65617 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 6510
diff changeset
165 doesn't try to distinguish them. Emacs Lisp has no read syntax for NaNs
9a9e88e65617 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 6510
diff changeset
166 or infinities; perhaps we should create a syntax in the future.
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
167
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
168 You can use @code{logb} to extract the binary exponent of a floating
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
169 point number (or estimate the logarithm of an integer):
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
170
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
171 @defun logb number
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
172 This function returns the binary exponent of @var{number}. More
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
173 precisely, the value is the logarithm of @var{number} base 2, rounded
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
174 down to an integer.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
175 @end defun
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
176
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
177 @node Predicates on Numbers
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
178 @section Type Predicates for Numbers
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
179
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
180 The functions in this section test whether the argument is a number or
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
181 whether it is a certain sort of number. The functions @code{integerp}
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
182 and @code{floatp} can take any type of Lisp object as argument (the
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
183 predicates would not be of much use otherwise); but the @code{zerop}
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
184 predicate requires a number as its argument. See also
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
185 @code{integer-or-marker-p} and @code{number-or-marker-p}, in
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
186 @ref{Predicates on Markers}.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
187
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
188 @defun floatp object
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
189 This predicate tests whether its argument is a floating point
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
190 number and returns @code{t} if so, @code{nil} otherwise.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
191
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
192 @code{floatp} does not exist in Emacs versions 18 and earlier.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
193 @end defun
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
194
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
195 @defun integerp object
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
196 This predicate tests whether its argument is an integer, and returns
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
197 @code{t} if so, @code{nil} otherwise.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
198 @end defun
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
199
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
200 @defun numberp object
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
201 This predicate tests whether its argument is a number (either integer or
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
202 floating point), and returns @code{t} if so, @code{nil} otherwise.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
203 @end defun
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
204
7115
9a9e88e65617 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 6510
diff changeset
205 @defun wholenump object
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
206 @cindex natural numbers
7115
9a9e88e65617 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 6510
diff changeset
207 The @code{wholenump} predicate (whose name comes from the phrase
9a9e88e65617 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 6510
diff changeset
208 ``whole-number-p'') tests to see whether its argument is a nonnegative
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
209 integer, and returns @code{t} if so, @code{nil} otherwise. 0 is
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
210 considered non-negative.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
211
7115
9a9e88e65617 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 6510
diff changeset
212 @findex natnump
9a9e88e65617 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 6510
diff changeset
213 @code{natnump} is an obsolete synonym for @code{wholenump}.
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
214 @end defun
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
215
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
216 @defun zerop number
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
217 This predicate tests whether its argument is zero, and returns @code{t}
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
218 if so, @code{nil} otherwise. The argument must be a number.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
219
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
220 These two forms are equivalent: @code{(zerop x)} @equiv{} @code{(= x 0)}.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
221 @end defun
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
222
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
223 @node Comparison of Numbers
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
224 @section Comparison of Numbers
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
225 @cindex number equality
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
226
7115
9a9e88e65617 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 6510
diff changeset
227 To test numbers for numerical equality, you should normally use
9a9e88e65617 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 6510
diff changeset
228 @code{=}, not @code{eq}. There can be many distinct floating point
9a9e88e65617 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 6510
diff changeset
229 number objects with the same numeric value. If you use @code{eq} to
9a9e88e65617 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 6510
diff changeset
230 compare them, then you test whether two values are the same
9a9e88e65617 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 6510
diff changeset
231 @emph{object}. By contrast, @code{=} compares only the numeric values
9a9e88e65617 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 6510
diff changeset
232 of the objects.
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
233
7115
9a9e88e65617 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 6510
diff changeset
234 At present, each integer value has a unique Lisp object in Emacs Lisp.
9a9e88e65617 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 6510
diff changeset
235 Therefore, @code{eq} is equivalent @code{=} where integers are
9a9e88e65617 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 6510
diff changeset
236 concerned. It is sometimes convenient to use @code{eq} for comparing an
9a9e88e65617 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 6510
diff changeset
237 unknown value with an integer, because @code{eq} does not report an
9a9e88e65617 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 6510
diff changeset
238 error if the unknown value is not a number---it accepts arguments of any
9a9e88e65617 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 6510
diff changeset
239 type. By contrast, @code{=} signals an error if the arguments are not
9a9e88e65617 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 6510
diff changeset
240 numbers or markers. However, it is a good idea to use @code{=} if you
9a9e88e65617 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 6510
diff changeset
241 can, even for comparing integers, just in case we change the
9a9e88e65617 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 6510
diff changeset
242 representation of integers in a future Emacs version.
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
243
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
244 There is another wrinkle: because floating point arithmetic is not
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
245 exact, it is often a bad idea to check for equality of two floating
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
246 point values. Usually it is better to test for approximate equality.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
247 Here's a function to do this:
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
248
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
249 @example
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
250 (defvar fuzz-factor 1.0e-6)
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
251 (defun approx-equal (x y)
12098
a6eb5f12b0f3 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 12067
diff changeset
252 (or (and (= x 0) (= y 0))
a6eb5f12b0f3 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 12067
diff changeset
253 (< (/ (abs (- x y))
a6eb5f12b0f3 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 12067
diff changeset
254 (max (abs x) (abs y)))
a6eb5f12b0f3 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 12067
diff changeset
255 fuzz-factor)))
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
256 @end example
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
257
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
258 @cindex CL note---integers vrs @code{eq}
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
259 @quotation
7115
9a9e88e65617 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 6510
diff changeset
260 @b{Common Lisp note:} Comparing numbers in Common Lisp always requires
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
261 @code{=} because Common Lisp implements multi-word integers, and two
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
262 distinct integer objects can have the same numeric value. Emacs Lisp
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
263 can have just one integer object for any given value because it has a
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
264 limited range of integer values.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
265 @end quotation
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
266
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
267 @defun = number-or-marker1 number-or-marker2
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
268 This function tests whether its arguments are numerically equal, and
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
269 returns @code{t} if so, @code{nil} otherwise.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
270 @end defun
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
271
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
272 @defun /= number-or-marker1 number-or-marker2
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
273 This function tests whether its arguments are numerically equal, and
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
274 returns @code{t} if they are not, and @code{nil} if they are.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
275 @end defun
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
276
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
277 @defun < number-or-marker1 number-or-marker2
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
278 This function tests whether its first argument is strictly less than
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
279 its second argument. It returns @code{t} if so, @code{nil} otherwise.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
280 @end defun
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
281
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
282 @defun <= number-or-marker1 number-or-marker2
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
283 This function tests whether its first argument is less than or equal
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
284 to its second argument. It returns @code{t} if so, @code{nil}
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
285 otherwise.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
286 @end defun
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
287
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
288 @defun > number-or-marker1 number-or-marker2
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
289 This function tests whether its first argument is strictly greater
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
290 than its second argument. It returns @code{t} if so, @code{nil}
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
291 otherwise.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
292 @end defun
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
293
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
294 @defun >= number-or-marker1 number-or-marker2
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
295 This function tests whether its first argument is greater than or
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
296 equal to its second argument. It returns @code{t} if so, @code{nil}
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
297 otherwise.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
298 @end defun
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
299
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
300 @defun max number-or-marker &rest numbers-or-markers
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
301 This function returns the largest of its arguments.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
302
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
303 @example
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
304 (max 20)
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
305 @result{} 20
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
306 (max 1 2.5)
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
307 @result{} 2.5
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
308 (max 1 3 2.5)
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
309 @result{} 3
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
310 @end example
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
311 @end defun
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
312
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
313 @defun min number-or-marker &rest numbers-or-markers
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
314 This function returns the smallest of its arguments.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
315
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
316 @example
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
317 (min -4 1)
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
318 @result{} -4
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
319 @end example
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
320 @end defun
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
321
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
322 @node Numeric Conversions
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
323 @section Numeric Conversions
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
324 @cindex rounding in conversions
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
325
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
326 To convert an integer to floating point, use the function @code{float}.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
327
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
328 @defun float number
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
329 This returns @var{number} converted to floating point.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
330 If @var{number} is already a floating point number, @code{float} returns
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
331 it unchanged.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
332 @end defun
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
333
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
334 There are four functions to convert floating point numbers to integers;
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
335 they differ in how they round. These functions accept integer arguments
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
336 also, and return such arguments unchanged.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
337
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
338 @defun truncate number
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
339 This returns @var{number}, converted to an integer by rounding towards
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
340 zero.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
341 @end defun
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
342
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
343 @defun floor number &optional divisor
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
344 This returns @var{number}, converted to an integer by rounding downward
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
345 (towards negative infinity).
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
346
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
347 If @var{divisor} is specified, @var{number} is divided by @var{divisor}
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
348 before the floor is taken; this is the division operation that
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
349 corresponds to @code{mod}. An @code{arith-error} results if
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
350 @var{divisor} is 0.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
351 @end defun
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
352
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
353 @defun ceiling number
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
354 This returns @var{number}, converted to an integer by rounding upward
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
355 (towards positive infinity).
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
356 @end defun
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
357
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
358 @defun round number
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
359 This returns @var{number}, converted to an integer by rounding towards the
12098
a6eb5f12b0f3 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 12067
diff changeset
360 nearest integer. Rounding a value equidistant between two integers
a6eb5f12b0f3 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 12067
diff changeset
361 may choose the integer closer to zero, or it may prefer an even integer,
a6eb5f12b0f3 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 12067
diff changeset
362 depending on your machine.
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
363 @end defun
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
364
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
365 @node Arithmetic Operations
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
366 @section Arithmetic Operations
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
367
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
368 Emacs Lisp provides the traditional four arithmetic operations:
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
369 addition, subtraction, multiplication, and division. Remainder and modulus
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
370 functions supplement the division functions. The functions to
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
371 add or subtract 1 are provided because they are traditional in Lisp and
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
372 commonly used.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
373
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
374 All of these functions except @code{%} return a floating point value
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
375 if any argument is floating.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
376
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
377 It is important to note that in GNU Emacs Lisp, arithmetic functions
12067
73dc8205d259 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 11230
diff changeset
378 do not check for overflow. Thus @code{(1+ 134217727)} may evaluate to
73dc8205d259 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 11230
diff changeset
379 @minus{}134217728, depending on your hardware.
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
380
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
381 @defun 1+ number-or-marker
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
382 This function returns @var{number-or-marker} plus 1.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
383 For example,
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
384
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
385 @example
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
386 (setq foo 4)
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
387 @result{} 4
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
388 (1+ foo)
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
389 @result{} 5
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
390 @end example
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
391
12098
a6eb5f12b0f3 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 12067
diff changeset
392 This function is not analogous to the C operator @code{++}---it does not
a6eb5f12b0f3 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 12067
diff changeset
393 increment a variable. It just computes a sum. Thus, if we continue,
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
394
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
395 @example
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
396 foo
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
397 @result{} 4
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
398 @end example
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
399
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
400 If you want to increment the variable, you must use @code{setq},
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
401 like this:
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
402
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
403 @example
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
404 (setq foo (1+ foo))
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
405 @result{} 5
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
406 @end example
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
407 @end defun
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
408
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
409 @defun 1- number-or-marker
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
410 This function returns @var{number-or-marker} minus 1.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
411 @end defun
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
412
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
413 @defun abs number
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
414 This returns the absolute value of @var{number}.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
415 @end defun
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
416
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
417 @defun + &rest numbers-or-markers
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
418 This function adds its arguments together. When given no arguments,
12098
a6eb5f12b0f3 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 12067
diff changeset
419 @code{+} returns 0.
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
420
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
421 @example
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
422 (+)
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
423 @result{} 0
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
424 (+ 1)
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
425 @result{} 1
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
426 (+ 1 2 3 4)
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
427 @result{} 10
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
428 @end example
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
429 @end defun
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
430
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
431 @defun - &optional number-or-marker &rest other-numbers-or-markers
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
432 The @code{-} function serves two purposes: negation and subtraction.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
433 When @code{-} has a single argument, the value is the negative of the
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
434 argument. When there are multiple arguments, @code{-} subtracts each of
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
435 the @var{other-numbers-or-markers} from @var{number-or-marker},
12098
a6eb5f12b0f3 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 12067
diff changeset
436 cumulatively. If there are no arguments, the result is 0.
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
437
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
438 @example
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
439 (- 10 1 2 3 4)
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
440 @result{} 0
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
441 (- 10)
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
442 @result{} -10
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
443 (-)
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
444 @result{} 0
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
445 @end example
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
446 @end defun
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
447
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
448 @defun * &rest numbers-or-markers
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
449 This function multiplies its arguments together, and returns the
12098
a6eb5f12b0f3 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 12067
diff changeset
450 product. When given no arguments, @code{*} returns 1.
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
451
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
452 @example
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
453 (*)
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
454 @result{} 1
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
455 (* 1)
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
456 @result{} 1
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
457 (* 1 2 3 4)
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
458 @result{} 24
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
459 @end example
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
460 @end defun
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
461
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
462 @defun / dividend divisor &rest divisors
7115
9a9e88e65617 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 6510
diff changeset
463 This function divides @var{dividend} by @var{divisor} and returns the
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
464 quotient. If there are additional arguments @var{divisors}, then it
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
465 divides @var{dividend} by each divisor in turn. Each argument may be a
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
466 number or a marker.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
467
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
468 If all the arguments are integers, then the result is an integer too.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
469 This means the result has to be rounded. On most machines, the result
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
470 is rounded towards zero after each division, but some machines may round
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
471 differently with negative arguments. This is because the Lisp function
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
472 @code{/} is implemented using the C division operator, which also
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
473 permits machine-dependent rounding. As a practical matter, all known
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
474 machines round in the standard fashion.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
475
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
476 @cindex @code{arith-error} in division
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
477 If you divide by 0, an @code{arith-error} error is signaled.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
478 (@xref{Errors}.)
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
479
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
480 @example
12282
586e3ea81792 updates for version 19.29 made by melissa; also needed to check out files
Melissa Weisshaus <melissa@gnu.org>
parents: 12128
diff changeset
481 @group
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
482 (/ 6 2)
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
483 @result{} 3
12282
586e3ea81792 updates for version 19.29 made by melissa; also needed to check out files
Melissa Weisshaus <melissa@gnu.org>
parents: 12128
diff changeset
484 @end group
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
485 (/ 5 2)
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
486 @result{} 2
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
487 (/ 25 3 2)
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
488 @result{} 4
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
489 (/ -17 6)
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
490 @result{} -2
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
491 @end example
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
492
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
493 The result of @code{(/ -17 6)} could in principle be -3 on some
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
494 machines.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
495 @end defun
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
496
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
497 @defun % dividend divisor
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
498 @cindex remainder
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
499 This function returns the integer remainder after division of @var{dividend}
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
500 by @var{divisor}. The arguments must be integers or markers.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
501
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
502 For negative arguments, the remainder is in principle machine-dependent
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
503 since the quotient is; but in practice, all known machines behave alike.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
504
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
505 An @code{arith-error} results if @var{divisor} is 0.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
506
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
507 @example
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
508 (% 9 4)
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
509 @result{} 1
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
510 (% -9 4)
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
511 @result{} -1
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
512 (% 9 -4)
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
513 @result{} 1
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
514 (% -9 -4)
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
515 @result{} -1
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
516 @end example
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
517
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
518 For any two integers @var{dividend} and @var{divisor},
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
519
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
520 @example
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
521 @group
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
522 (+ (% @var{dividend} @var{divisor})
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
523 (* (/ @var{dividend} @var{divisor}) @var{divisor}))
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
524 @end group
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
525 @end example
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
526
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
527 @noindent
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
528 always equals @var{dividend}.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
529 @end defun
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
530
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
531 @defun mod dividend divisor
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
532 @cindex modulus
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
533 This function returns the value of @var{dividend} modulo @var{divisor};
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
534 in other words, the remainder after division of @var{dividend}
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
535 by @var{divisor}, but with the same sign as @var{divisor}.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
536 The arguments must be numbers or markers.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
537
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
538 Unlike @code{%}, @code{mod} returns a well-defined result for negative
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
539 arguments. It also permits floating point arguments; it rounds the
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
540 quotient downward (towards minus infinity) to an integer, and uses that
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
541 quotient to compute the remainder.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
542
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
543 An @code{arith-error} results if @var{divisor} is 0.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
544
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
545 @example
12282
586e3ea81792 updates for version 19.29 made by melissa; also needed to check out files
Melissa Weisshaus <melissa@gnu.org>
parents: 12128
diff changeset
546 @group
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
547 (mod 9 4)
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
548 @result{} 1
12282
586e3ea81792 updates for version 19.29 made by melissa; also needed to check out files
Melissa Weisshaus <melissa@gnu.org>
parents: 12128
diff changeset
549 @end group
586e3ea81792 updates for version 19.29 made by melissa; also needed to check out files
Melissa Weisshaus <melissa@gnu.org>
parents: 12128
diff changeset
550 @group
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
551 (mod -9 4)
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
552 @result{} 3
12282
586e3ea81792 updates for version 19.29 made by melissa; also needed to check out files
Melissa Weisshaus <melissa@gnu.org>
parents: 12128
diff changeset
553 @end group
586e3ea81792 updates for version 19.29 made by melissa; also needed to check out files
Melissa Weisshaus <melissa@gnu.org>
parents: 12128
diff changeset
554 @group
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
555 (mod 9 -4)
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
556 @result{} -3
12282
586e3ea81792 updates for version 19.29 made by melissa; also needed to check out files
Melissa Weisshaus <melissa@gnu.org>
parents: 12128
diff changeset
557 @end group
586e3ea81792 updates for version 19.29 made by melissa; also needed to check out files
Melissa Weisshaus <melissa@gnu.org>
parents: 12128
diff changeset
558 @group
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
559 (mod -9 -4)
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
560 @result{} -1
12282
586e3ea81792 updates for version 19.29 made by melissa; also needed to check out files
Melissa Weisshaus <melissa@gnu.org>
parents: 12128
diff changeset
561 @end group
586e3ea81792 updates for version 19.29 made by melissa; also needed to check out files
Melissa Weisshaus <melissa@gnu.org>
parents: 12128
diff changeset
562 @group
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
563 (mod 5.5 2.5)
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
564 @result{} .5
12282
586e3ea81792 updates for version 19.29 made by melissa; also needed to check out files
Melissa Weisshaus <melissa@gnu.org>
parents: 12128
diff changeset
565 @end group
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
566 @end example
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
567
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
568 For any two numbers @var{dividend} and @var{divisor},
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
569
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
570 @example
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
571 @group
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
572 (+ (mod @var{dividend} @var{divisor})
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
573 (* (floor @var{dividend} @var{divisor}) @var{divisor}))
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
574 @end group
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
575 @end example
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
576
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
577 @noindent
12098
a6eb5f12b0f3 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 12067
diff changeset
578 always equals @var{dividend}, subject to rounding error if either
a6eb5f12b0f3 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 12067
diff changeset
579 argument is floating point. For @code{floor}, see @ref{Numeric
a6eb5f12b0f3 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 12067
diff changeset
580 Conversions}.
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
581 @end defun
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
582
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
583 @node Rounding Operations
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
584 @section Rounding Operations
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
585 @cindex rounding without conversion
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
586
8017
ae1a594ebb1d entered into RCS
Richard M. Stallman <rms@gnu.org>
parents: 7115
diff changeset
587 The functions @code{ffloor}, @code{fceiling}, @code{fround} and
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
588 @code{ftruncate} take a floating point argument and return a floating
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
589 point result whose value is a nearby integer. @code{ffloor} returns the
8017
ae1a594ebb1d entered into RCS
Richard M. Stallman <rms@gnu.org>
parents: 7115
diff changeset
590 nearest integer below; @code{fceiling}, the nearest integer above;
7115
9a9e88e65617 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 6510
diff changeset
591 @code{ftruncate}, the nearest integer in the direction towards zero;
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
592 @code{fround}, the nearest integer.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
593
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
594 @defun ffloor float
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
595 This function rounds @var{float} to the next lower integral value, and
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
596 returns that value as a floating point number.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
597 @end defun
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
598
8017
ae1a594ebb1d entered into RCS
Richard M. Stallman <rms@gnu.org>
parents: 7115
diff changeset
599 @defun fceiling float
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
600 This function rounds @var{float} to the next higher integral value, and
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
601 returns that value as a floating point number.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
602 @end defun
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
603
7115
9a9e88e65617 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 6510
diff changeset
604 @defun ftruncate float
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
605 This function rounds @var{float} towards zero to an integral value, and
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
606 returns that value as a floating point number.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
607 @end defun
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
608
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
609 @defun fround float
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
610 This function rounds @var{float} to the nearest integral value,
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
611 and returns that value as a floating point number.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
612 @end defun
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
613
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
614 @node Bitwise Operations
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
615 @section Bitwise Operations on Integers
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
616
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
617 In a computer, an integer is represented as a binary number, a
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
618 sequence of @dfn{bits} (digits which are either zero or one). A bitwise
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
619 operation acts on the individual bits of such a sequence. For example,
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
620 @dfn{shifting} moves the whole sequence left or right one or more places,
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
621 reproducing the same pattern ``moved over''.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
622
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
623 The bitwise operations in Emacs Lisp apply only to integers.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
624
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
625 @defun lsh integer1 count
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
626 @cindex logical shift
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
627 @code{lsh}, which is an abbreviation for @dfn{logical shift}, shifts the
7115
9a9e88e65617 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 6510
diff changeset
628 bits in @var{integer1} to the left @var{count} places, or to the right
9a9e88e65617 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 6510
diff changeset
629 if @var{count} is negative, bringing zeros into the vacated bits. If
9a9e88e65617 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 6510
diff changeset
630 @var{count} is negative, @code{lsh} shifts zeros into the leftmost
9a9e88e65617 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 6510
diff changeset
631 (most-significant) bit, producing a positive result even if
9a9e88e65617 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 6510
diff changeset
632 @var{integer1} is negative. Contrast this with @code{ash}, below.
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
633
7115
9a9e88e65617 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 6510
diff changeset
634 Here are two examples of @code{lsh}, shifting a pattern of bits one
9a9e88e65617 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 6510
diff changeset
635 place to the left. We show only the low-order eight bits of the binary
9a9e88e65617 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 6510
diff changeset
636 pattern; the rest are all zero.
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
637
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
638 @example
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
639 @group
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
640 (lsh 5 1)
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
641 @result{} 10
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
642 ;; @r{Decimal 5 becomes decimal 10.}
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
643 00000101 @result{} 00001010
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
644
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
645 (lsh 7 1)
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
646 @result{} 14
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
647 ;; @r{Decimal 7 becomes decimal 14.}
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
648 00000111 @result{} 00001110
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
649 @end group
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
650 @end example
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
651
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
652 @noindent
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
653 As the examples illustrate, shifting the pattern of bits one place to
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
654 the left produces a number that is twice the value of the previous
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
655 number.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
656
12098
a6eb5f12b0f3 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 12067
diff changeset
657 Shifting a pattern of bits two places to the left produces results
a6eb5f12b0f3 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 12067
diff changeset
658 like this (with 8-bit binary numbers):
a6eb5f12b0f3 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 12067
diff changeset
659
a6eb5f12b0f3 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 12067
diff changeset
660 @example
a6eb5f12b0f3 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 12067
diff changeset
661 @group
a6eb5f12b0f3 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 12067
diff changeset
662 (lsh 3 2)
a6eb5f12b0f3 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 12067
diff changeset
663 @result{} 12
a6eb5f12b0f3 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 12067
diff changeset
664 ;; @r{Decimal 3 becomes decimal 12.}
a6eb5f12b0f3 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 12067
diff changeset
665 00000011 @result{} 00001100
a6eb5f12b0f3 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 12067
diff changeset
666 @end group
a6eb5f12b0f3 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 12067
diff changeset
667 @end example
a6eb5f12b0f3 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 12067
diff changeset
668
a6eb5f12b0f3 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 12067
diff changeset
669 On the other hand, shifting one place to the right looks like this:
a6eb5f12b0f3 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 12067
diff changeset
670
a6eb5f12b0f3 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 12067
diff changeset
671 @example
a6eb5f12b0f3 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 12067
diff changeset
672 @group
a6eb5f12b0f3 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 12067
diff changeset
673 (lsh 6 -1)
a6eb5f12b0f3 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 12067
diff changeset
674 @result{} 3
a6eb5f12b0f3 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 12067
diff changeset
675 ;; @r{Decimal 6 becomes decimal 3.}
a6eb5f12b0f3 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 12067
diff changeset
676 00000110 @result{} 00000011
a6eb5f12b0f3 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 12067
diff changeset
677 @end group
a6eb5f12b0f3 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 12067
diff changeset
678
a6eb5f12b0f3 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 12067
diff changeset
679 @group
a6eb5f12b0f3 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 12067
diff changeset
680 (lsh 5 -1)
a6eb5f12b0f3 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 12067
diff changeset
681 @result{} 2
a6eb5f12b0f3 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 12067
diff changeset
682 ;; @r{Decimal 5 becomes decimal 2.}
a6eb5f12b0f3 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 12067
diff changeset
683 00000101 @result{} 00000010
a6eb5f12b0f3 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 12067
diff changeset
684 @end group
a6eb5f12b0f3 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 12067
diff changeset
685 @end example
a6eb5f12b0f3 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 12067
diff changeset
686
a6eb5f12b0f3 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 12067
diff changeset
687 @noindent
a6eb5f12b0f3 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 12067
diff changeset
688 As the example illustrates, shifting one place to the right divides the
a6eb5f12b0f3 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 12067
diff changeset
689 value of a positive integer by two, rounding downward.
a6eb5f12b0f3 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 12067
diff changeset
690
7115
9a9e88e65617 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 6510
diff changeset
691 The function @code{lsh}, like all Emacs Lisp arithmetic functions, does
9a9e88e65617 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 6510
diff changeset
692 not check for overflow, so shifting left can discard significant bits
12067
73dc8205d259 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 11230
diff changeset
693 and change the sign of the number. For example, left shifting
73dc8205d259 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 11230
diff changeset
694 134,217,727 produces @minus{}2 on a 28-bit machine:
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
695
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
696 @example
12067
73dc8205d259 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 11230
diff changeset
697 (lsh 134217727 1) ; @r{left shift}
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
698 @result{} -2
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
699 @end example
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
700
10306
89f8d7f3bd73 Integers now at least 28 bits.
Richard M. Stallman <rms@gnu.org>
parents: 8017
diff changeset
701 In binary, in the 28-bit implementation, the argument looks like this:
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
702
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
703 @example
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
704 @group
12128
27144f55d1c6 fixed errors that appeared during update to 19.29.
Melissa Weisshaus <melissa@gnu.org>
parents: 12098
diff changeset
705 ;; @r{Decimal 134,217,727}
10306
89f8d7f3bd73 Integers now at least 28 bits.
Richard M. Stallman <rms@gnu.org>
parents: 8017
diff changeset
706 0111 1111 1111 1111 1111 1111 1111
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
707 @end group
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
708 @end example
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
709
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
710 @noindent
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
711 which becomes the following when left shifted:
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
712
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
713 @example
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
714 @group
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
715 ;; @r{Decimal @minus{}2}
10306
89f8d7f3bd73 Integers now at least 28 bits.
Richard M. Stallman <rms@gnu.org>
parents: 8017
diff changeset
716 1111 1111 1111 1111 1111 1111 1110
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
717 @end group
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
718 @end example
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
719 @end defun
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
720
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
721 @defun ash integer1 count
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
722 @cindex arithmetic shift
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
723 @code{ash} (@dfn{arithmetic shift}) shifts the bits in @var{integer1}
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
724 to the left @var{count} places, or to the right if @var{count}
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
725 is negative.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
726
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
727 @code{ash} gives the same results as @code{lsh} except when
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
728 @var{integer1} and @var{count} are both negative. In that case,
12098
a6eb5f12b0f3 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 12067
diff changeset
729 @code{ash} puts ones in the empty bit positions on the left, while
a6eb5f12b0f3 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 12067
diff changeset
730 @code{lsh} puts zeros in those bit positions.
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
731
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
732 Thus, with @code{ash}, shifting the pattern of bits one place to the right
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
733 looks like this:
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
734
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
735 @example
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
736 @group
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
737 (ash -6 -1) @result{} -3
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
738 ;; @r{Decimal @minus{}6 becomes decimal @minus{}3.}
10306
89f8d7f3bd73 Integers now at least 28 bits.
Richard M. Stallman <rms@gnu.org>
parents: 8017
diff changeset
739 1111 1111 1111 1111 1111 1111 1010
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
740 @result{}
10306
89f8d7f3bd73 Integers now at least 28 bits.
Richard M. Stallman <rms@gnu.org>
parents: 8017
diff changeset
741 1111 1111 1111 1111 1111 1111 1101
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
742 @end group
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
743 @end example
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
744
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
745 In contrast, shifting the pattern of bits one place to the right with
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
746 @code{lsh} looks like this:
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
747
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
748 @example
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
749 @group
10306
89f8d7f3bd73 Integers now at least 28 bits.
Richard M. Stallman <rms@gnu.org>
parents: 8017
diff changeset
750 (lsh -6 -1) @result{} 134217725
89f8d7f3bd73 Integers now at least 28 bits.
Richard M. Stallman <rms@gnu.org>
parents: 8017
diff changeset
751 ;; @r{Decimal @minus{}6 becomes decimal 134,217,725.}
89f8d7f3bd73 Integers now at least 28 bits.
Richard M. Stallman <rms@gnu.org>
parents: 8017
diff changeset
752 1111 1111 1111 1111 1111 1111 1010
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
753 @result{}
10306
89f8d7f3bd73 Integers now at least 28 bits.
Richard M. Stallman <rms@gnu.org>
parents: 8017
diff changeset
754 0111 1111 1111 1111 1111 1111 1101
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
755 @end group
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
756 @end example
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
757
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
758 Here are other examples:
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
759
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
760 @c !!! Check if lined up in smallbook format! XDVI shows problem
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
761 @c with smallbook but not with regular book! --rjc 16mar92
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
762 @smallexample
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
763 @group
10306
89f8d7f3bd73 Integers now at least 28 bits.
Richard M. Stallman <rms@gnu.org>
parents: 8017
diff changeset
764 ; @r{ 28-bit binary values}
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
765
10306
89f8d7f3bd73 Integers now at least 28 bits.
Richard M. Stallman <rms@gnu.org>
parents: 8017
diff changeset
766 (lsh 5 2) ; 5 = @r{0000 0000 0000 0000 0000 0000 0101}
89f8d7f3bd73 Integers now at least 28 bits.
Richard M. Stallman <rms@gnu.org>
parents: 8017
diff changeset
767 @result{} 20 ; = @r{0000 0000 0000 0000 0000 0001 0100}
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
768 @end group
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
769 @group
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
770 (ash 5 2)
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
771 @result{} 20
10306
89f8d7f3bd73 Integers now at least 28 bits.
Richard M. Stallman <rms@gnu.org>
parents: 8017
diff changeset
772 (lsh -5 2) ; -5 = @r{1111 1111 1111 1111 1111 1111 1011}
89f8d7f3bd73 Integers now at least 28 bits.
Richard M. Stallman <rms@gnu.org>
parents: 8017
diff changeset
773 @result{} -20 ; = @r{1111 1111 1111 1111 1111 1110 1100}
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
774 (ash -5 2)
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
775 @result{} -20
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
776 @end group
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
777 @group
10306
89f8d7f3bd73 Integers now at least 28 bits.
Richard M. Stallman <rms@gnu.org>
parents: 8017
diff changeset
778 (lsh 5 -2) ; 5 = @r{0000 0000 0000 0000 0000 0000 0101}
89f8d7f3bd73 Integers now at least 28 bits.
Richard M. Stallman <rms@gnu.org>
parents: 8017
diff changeset
779 @result{} 1 ; = @r{0000 0000 0000 0000 0000 0000 0001}
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
780 @end group
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
781 @group
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
782 (ash 5 -2)
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
783 @result{} 1
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
784 @end group
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
785 @group
10306
89f8d7f3bd73 Integers now at least 28 bits.
Richard M. Stallman <rms@gnu.org>
parents: 8017
diff changeset
786 (lsh -5 -2) ; -5 = @r{1111 1111 1111 1111 1111 1111 1011}
89f8d7f3bd73 Integers now at least 28 bits.
Richard M. Stallman <rms@gnu.org>
parents: 8017
diff changeset
787 @result{} 4194302 ; = @r{0011 1111 1111 1111 1111 1111 1110}
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
788 @end group
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
789 @group
10306
89f8d7f3bd73 Integers now at least 28 bits.
Richard M. Stallman <rms@gnu.org>
parents: 8017
diff changeset
790 (ash -5 -2) ; -5 = @r{1111 1111 1111 1111 1111 1111 1011}
89f8d7f3bd73 Integers now at least 28 bits.
Richard M. Stallman <rms@gnu.org>
parents: 8017
diff changeset
791 @result{} -2 ; = @r{1111 1111 1111 1111 1111 1111 1110}
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
792 @end group
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
793 @end smallexample
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
794 @end defun
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
795
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
796 @defun logand &rest ints-or-markers
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
797 @cindex logical and
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
798 @cindex bitwise and
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
799 This function returns the ``logical and'' of the arguments: the
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
800 @var{n}th bit is set in the result if, and only if, the @var{n}th bit is
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
801 set in all the arguments. (``Set'' means that the value of the bit is 1
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
802 rather than 0.)
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
803
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
804 For example, using 4-bit binary numbers, the ``logical and'' of 13 and
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
805 12 is 12: 1101 combined with 1100 produces 1100.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
806 In both the binary numbers, the leftmost two bits are set (i.e., they
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
807 are 1's), so the leftmost two bits of the returned value are set.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
808 However, for the rightmost two bits, each is zero in at least one of
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
809 the arguments, so the rightmost two bits of the returned value are 0's.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
810
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
811 @noindent
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
812 Therefore,
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
813
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
814 @example
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
815 @group
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
816 (logand 13 12)
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
817 @result{} 12
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
818 @end group
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
819 @end example
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
820
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
821 If @code{logand} is not passed any argument, it returns a value of
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
822 @minus{}1. This number is an identity element for @code{logand}
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
823 because its binary representation consists entirely of ones. If
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
824 @code{logand} is passed just one argument, it returns that argument.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
825
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
826 @smallexample
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
827 @group
10306
89f8d7f3bd73 Integers now at least 28 bits.
Richard M. Stallman <rms@gnu.org>
parents: 8017
diff changeset
828 ; @r{ 28-bit binary values}
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
829
10306
89f8d7f3bd73 Integers now at least 28 bits.
Richard M. Stallman <rms@gnu.org>
parents: 8017
diff changeset
830 (logand 14 13) ; 14 = @r{0000 0000 0000 0000 0000 0000 1110}
89f8d7f3bd73 Integers now at least 28 bits.
Richard M. Stallman <rms@gnu.org>
parents: 8017
diff changeset
831 ; 13 = @r{0000 0000 0000 0000 0000 0000 1101}
89f8d7f3bd73 Integers now at least 28 bits.
Richard M. Stallman <rms@gnu.org>
parents: 8017
diff changeset
832 @result{} 12 ; 12 = @r{0000 0000 0000 0000 0000 0000 1100}
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
833 @end group
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
834
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
835 @group
10306
89f8d7f3bd73 Integers now at least 28 bits.
Richard M. Stallman <rms@gnu.org>
parents: 8017
diff changeset
836 (logand 14 13 4) ; 14 = @r{0000 0000 0000 0000 0000 0000 1110}
89f8d7f3bd73 Integers now at least 28 bits.
Richard M. Stallman <rms@gnu.org>
parents: 8017
diff changeset
837 ; 13 = @r{0000 0000 0000 0000 0000 0000 1101}
89f8d7f3bd73 Integers now at least 28 bits.
Richard M. Stallman <rms@gnu.org>
parents: 8017
diff changeset
838 ; 4 = @r{0000 0000 0000 0000 0000 0000 0100}
89f8d7f3bd73 Integers now at least 28 bits.
Richard M. Stallman <rms@gnu.org>
parents: 8017
diff changeset
839 @result{} 4 ; 4 = @r{0000 0000 0000 0000 0000 0000 0100}
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
840 @end group
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
841
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
842 @group
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
843 (logand)
10306
89f8d7f3bd73 Integers now at least 28 bits.
Richard M. Stallman <rms@gnu.org>
parents: 8017
diff changeset
844 @result{} -1 ; -1 = @r{1111 1111 1111 1111 1111 1111 1111}
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
845 @end group
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
846 @end smallexample
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
847 @end defun
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
848
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
849 @defun logior &rest ints-or-markers
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
850 @cindex logical inclusive or
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
851 @cindex bitwise or
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
852 This function returns the ``inclusive or'' of its arguments: the @var{n}th bit
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
853 is set in the result if, and only if, the @var{n}th bit is set in at least
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
854 one of the arguments. If there are no arguments, the result is zero,
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
855 which is an identity element for this operation. If @code{logior} is
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
856 passed just one argument, it returns that argument.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
857
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
858 @smallexample
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
859 @group
10306
89f8d7f3bd73 Integers now at least 28 bits.
Richard M. Stallman <rms@gnu.org>
parents: 8017
diff changeset
860 ; @r{ 28-bit binary values}
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
861
10306
89f8d7f3bd73 Integers now at least 28 bits.
Richard M. Stallman <rms@gnu.org>
parents: 8017
diff changeset
862 (logior 12 5) ; 12 = @r{0000 0000 0000 0000 0000 0000 1100}
89f8d7f3bd73 Integers now at least 28 bits.
Richard M. Stallman <rms@gnu.org>
parents: 8017
diff changeset
863 ; 5 = @r{0000 0000 0000 0000 0000 0000 0101}
89f8d7f3bd73 Integers now at least 28 bits.
Richard M. Stallman <rms@gnu.org>
parents: 8017
diff changeset
864 @result{} 13 ; 13 = @r{0000 0000 0000 0000 0000 0000 1101}
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
865 @end group
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
866
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
867 @group
10306
89f8d7f3bd73 Integers now at least 28 bits.
Richard M. Stallman <rms@gnu.org>
parents: 8017
diff changeset
868 (logior 12 5 7) ; 12 = @r{0000 0000 0000 0000 0000 0000 1100}
89f8d7f3bd73 Integers now at least 28 bits.
Richard M. Stallman <rms@gnu.org>
parents: 8017
diff changeset
869 ; 5 = @r{0000 0000 0000 0000 0000 0000 0101}
89f8d7f3bd73 Integers now at least 28 bits.
Richard M. Stallman <rms@gnu.org>
parents: 8017
diff changeset
870 ; 7 = @r{0000 0000 0000 0000 0000 0000 0111}
89f8d7f3bd73 Integers now at least 28 bits.
Richard M. Stallman <rms@gnu.org>
parents: 8017
diff changeset
871 @result{} 15 ; 15 = @r{0000 0000 0000 0000 0000 0000 1111}
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
872 @end group
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
873 @end smallexample
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
874 @end defun
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
875
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
876 @defun logxor &rest ints-or-markers
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
877 @cindex bitwise exclusive or
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
878 @cindex logical exclusive or
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
879 This function returns the ``exclusive or'' of its arguments: the
7115
9a9e88e65617 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 6510
diff changeset
880 @var{n}th bit is set in the result if, and only if, the @var{n}th bit is
9a9e88e65617 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 6510
diff changeset
881 set in an odd number of the arguments. If there are no arguments, the
9a9e88e65617 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 6510
diff changeset
882 result is 0, which is an identity element for this operation. If
9a9e88e65617 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 6510
diff changeset
883 @code{logxor} is passed just one argument, it returns that argument.
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
884
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
885 @smallexample
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
886 @group
10306
89f8d7f3bd73 Integers now at least 28 bits.
Richard M. Stallman <rms@gnu.org>
parents: 8017
diff changeset
887 ; @r{ 28-bit binary values}
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
888
10306
89f8d7f3bd73 Integers now at least 28 bits.
Richard M. Stallman <rms@gnu.org>
parents: 8017
diff changeset
889 (logxor 12 5) ; 12 = @r{0000 0000 0000 0000 0000 0000 1100}
89f8d7f3bd73 Integers now at least 28 bits.
Richard M. Stallman <rms@gnu.org>
parents: 8017
diff changeset
890 ; 5 = @r{0000 0000 0000 0000 0000 0000 0101}
89f8d7f3bd73 Integers now at least 28 bits.
Richard M. Stallman <rms@gnu.org>
parents: 8017
diff changeset
891 @result{} 9 ; 9 = @r{0000 0000 0000 0000 0000 0000 1001}
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
892 @end group
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
893
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
894 @group
10306
89f8d7f3bd73 Integers now at least 28 bits.
Richard M. Stallman <rms@gnu.org>
parents: 8017
diff changeset
895 (logxor 12 5 7) ; 12 = @r{0000 0000 0000 0000 0000 0000 1100}
89f8d7f3bd73 Integers now at least 28 bits.
Richard M. Stallman <rms@gnu.org>
parents: 8017
diff changeset
896 ; 5 = @r{0000 0000 0000 0000 0000 0000 0101}
89f8d7f3bd73 Integers now at least 28 bits.
Richard M. Stallman <rms@gnu.org>
parents: 8017
diff changeset
897 ; 7 = @r{0000 0000 0000 0000 0000 0000 0111}
89f8d7f3bd73 Integers now at least 28 bits.
Richard M. Stallman <rms@gnu.org>
parents: 8017
diff changeset
898 @result{} 14 ; 14 = @r{0000 0000 0000 0000 0000 0000 1110}
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
899 @end group
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
900 @end smallexample
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
901 @end defun
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
902
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
903 @defun lognot integer
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
904 @cindex logical not
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
905 @cindex bitwise not
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
906 This function returns the logical complement of its argument: the @var{n}th
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
907 bit is one in the result if, and only if, the @var{n}th bit is zero in
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
908 @var{integer}, and vice-versa.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
909
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
910 @example
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
911 (lognot 5)
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
912 @result{} -6
10306
89f8d7f3bd73 Integers now at least 28 bits.
Richard M. Stallman <rms@gnu.org>
parents: 8017
diff changeset
913 ;; 5 = @r{0000 0000 0000 0000 0000 0000 0101}
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
914 ;; @r{becomes}
10306
89f8d7f3bd73 Integers now at least 28 bits.
Richard M. Stallman <rms@gnu.org>
parents: 8017
diff changeset
915 ;; -6 = @r{1111 1111 1111 1111 1111 1111 1010}
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
916 @end example
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
917 @end defun
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
918
11230
c6b70cdf844e Don't call the special math functions "transcendental".
Richard M. Stallman <rms@gnu.org>
parents: 10558
diff changeset
919 @node Math Functions
c6b70cdf844e Don't call the special math functions "transcendental".
Richard M. Stallman <rms@gnu.org>
parents: 10558
diff changeset
920 @section Standard Mathematical Functions
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
921 @cindex transcendental functions
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
922 @cindex mathematical functions
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
923
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
924 These mathematical functions are available if floating point is
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
925 supported. They allow integers as well as floating point numbers
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
926 as arguments.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
927
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
928 @defun sin arg
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
929 @defunx cos arg
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
930 @defunx tan arg
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
931 These are the ordinary trigonometric functions, with argument measured
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
932 in radians.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
933 @end defun
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
934
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
935 @defun asin arg
7115
9a9e88e65617 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 6510
diff changeset
936 The value of @code{(asin @var{arg})} is a number between @minus{}pi/2
9a9e88e65617 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 6510
diff changeset
937 and pi/2 (inclusive) whose sine is @var{arg}; if, however, @var{arg}
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
938 is out of range (outside [-1, 1]), then the result is a NaN.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
939 @end defun
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
940
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
941 @defun acos arg
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
942 The value of @code{(acos @var{arg})} is a number between 0 and pi
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
943 (inclusive) whose cosine is @var{arg}; if, however, @var{arg}
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
944 is out of range (outside [-1, 1]), then the result is a NaN.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
945 @end defun
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
946
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
947 @defun atan arg
7115
9a9e88e65617 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 6510
diff changeset
948 The value of @code{(atan @var{arg})} is a number between @minus{}pi/2
9a9e88e65617 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 6510
diff changeset
949 and pi/2 (exclusive) whose tangent is @var{arg}.
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
950 @end defun
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
951
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
952 @defun exp arg
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
953 This is the exponential function; it returns @i{e} to the power
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
954 @var{arg}. @i{e} is a fundamental mathematical constant also called the
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
955 base of natural logarithms.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
956 @end defun
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
957
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
958 @defun log arg &optional base
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
959 This function returns the logarithm of @var{arg}, with base @var{base}.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
960 If you don't specify @var{base}, the base @var{e} is used. If @var{arg}
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
961 is negative, the result is a NaN.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
962 @end defun
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
963
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
964 @ignore
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
965 @defun expm1 arg
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
966 This function returns @code{(1- (exp @var{arg}))}, but it is more
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
967 accurate than that when @var{arg} is negative and @code{(exp @var{arg})}
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
968 is close to 1.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
969 @end defun
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
970
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
971 @defun log1p arg
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
972 This function returns @code{(log (1+ @var{arg}))}, but it is more
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
973 accurate than that when @var{arg} is so small that adding 1 to it would
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
974 lose accuracy.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
975 @end defun
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
976 @end ignore
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
977
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
978 @defun log10 arg
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
979 This function returns the logarithm of @var{arg}, with base 10. If
7115
9a9e88e65617 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 6510
diff changeset
980 @var{arg} is negative, the result is a NaN. @code{(log10 @var{x})}
9a9e88e65617 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 6510
diff changeset
981 @equiv{} @code{(log @var{x} 10)}, at least approximately.
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
982 @end defun
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
983
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
984 @defun expt x y
10306
89f8d7f3bd73 Integers now at least 28 bits.
Richard M. Stallman <rms@gnu.org>
parents: 8017
diff changeset
985 This function returns @var{x} raised to power @var{y}. If both
89f8d7f3bd73 Integers now at least 28 bits.
Richard M. Stallman <rms@gnu.org>
parents: 8017
diff changeset
986 arguments are integers and @var{y} is positive, the result is an
89f8d7f3bd73 Integers now at least 28 bits.
Richard M. Stallman <rms@gnu.org>
parents: 8017
diff changeset
987 integer; in this case, it is truncated to fit the range of possible
89f8d7f3bd73 Integers now at least 28 bits.
Richard M. Stallman <rms@gnu.org>
parents: 8017
diff changeset
988 integer values.
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
989 @end defun
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
990
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
991 @defun sqrt arg
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
992 This returns the square root of @var{arg}. If @var{arg} is negative,
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
993 the value is a NaN.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
994 @end defun
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
995
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
996 @node Random Numbers
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
997 @section Random Numbers
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
998 @cindex random numbers
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
999
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1000 A deterministic computer program cannot generate true random numbers.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1001 For most purposes, @dfn{pseudo-random numbers} suffice. A series of
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1002 pseudo-random numbers is generated in a deterministic fashion. The
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1003 numbers are not truly random, but they have certain properties that
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1004 mimic a random series. For example, all possible values occur equally
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1005 often in a pseudo-random series.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1006
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1007 In Emacs, pseudo-random numbers are generated from a ``seed'' number.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1008 Starting from any given seed, the @code{random} function always
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1009 generates the same sequence of numbers. Emacs always starts with the
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1010 same seed value, so the sequence of values of @code{random} is actually
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1011 the same in each Emacs run! For example, in one operating system, the
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1012 first call to @code{(random)} after you start Emacs always returns
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1013 -1457731, and the second one always returns -7692030. This
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1014 repeatability is helpful for debugging.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1015
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1016 If you want truly unpredictable random numbers, execute @code{(random
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1017 t)}. This chooses a new seed based on the current time of day and on
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1018 Emacs's process @sc{id} number.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1019
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1020 @defun random &optional limit
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1021 This function returns a pseudo-random integer. Repeated calls return a
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1022 series of pseudo-random integers.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1023
12067
73dc8205d259 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 11230
diff changeset
1024 If @var{limit} is a positive integer, the value is chosen to be
12098
a6eb5f12b0f3 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 12067
diff changeset
1025 nonnegative and less than @var{limit}.
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1026
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1027 If @var{limit} is @code{t}, it means to choose a new seed based on the
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1028 current time of day and on Emacs's process @sc{id} number.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1029 @c "Emacs'" is incorrect usage!
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1030
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1031 On some machines, any integer representable in Lisp may be the result
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1032 of @code{random}. On other machines, the result can never be larger
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1033 than a certain maximum or less than a certain (negative) minimum.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1034 @end defun