annotate lispref/numbers.texi @ 60716:056673a2ec2d

*** empty log message ***
author Richard M. Stallman <rms@gnu.org>
date Fri, 18 Mar 2005 18:35:33 +0000
parents d262f544d0bf
children ca22580c24e7 7e3f621f1dd4
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.
52886
3a30e4cd22e9 Update for extra bit of integer range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 52863
diff changeset
3 @c Copyright (C) 1990, 1991, 1992, 1993, 1994, 1995, 1998, 1999, 2003
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 48700
diff changeset
4 @c Free Software Foundation, Inc.
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
5 @c See the file elisp.texi for copying conditions.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
6 @setfilename ../info/numbers
7115
9a9e88e65617 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 6510
diff changeset
7 @node Numbers, Strings and Characters, Lisp Data Types, Top
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
8 @chapter Numbers
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
9 @cindex integers
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
10 @cindex numbers
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
11
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
12 GNU Emacs supports two numeric data types: @dfn{integers} and
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
13 @dfn{floating point numbers}. Integers are whole numbers such as
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
14 @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
15 numbers are numbers with fractional parts, such as @minus{}4.5, 0.0, or
21682
90da2489c498 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 21007
diff changeset
16 2.71828. They can also be expressed in exponential notation: 1.5e2
90da2489c498 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 21007
diff changeset
17 equals 150; in this example, @samp{e2} stands for ten to the second
90da2489c498 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 21007
diff changeset
18 power, and that is multiplied by 1.5. Floating point values are not
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
19 exact; they have a fixed, limited amount of precision.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
20
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
21 @menu
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
22 * Integer Basics:: Representation and range of integers.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
23 * Float Basics:: Representation and range of floating point.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
24 * Predicates on Numbers:: Testing for numbers.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
25 * Comparison of Numbers:: Equality and inequality predicates.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
26 * Numeric Conversions:: Converting float to integer and vice versa.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
27 * Arithmetic Operations:: How to add, subtract, multiply and divide.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
28 * Rounding Operations:: Explicitly rounding floating point numbers.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
29 * 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
30 * Math Functions:: Trig, exponential and logarithmic functions.
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
31 * Random Numbers:: Obtaining random integers, predictable or not.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
32 @end menu
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
33
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
34 @node Integer Basics
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
35 @comment node-name, next, previous, up
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
36 @section Integer Basics
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
37
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
38 The range of values for an integer depends on the machine. The
52886
3a30e4cd22e9 Update for extra bit of integer range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 52863
diff changeset
39 minimum range is @minus{}268435456 to 268435455 (29 bits; i.e.,
27193
89afca54a135 @ifinto -> @ifnottex.
Gerd Moellmann <gerd@gnu.org>
parents: 27189
diff changeset
40 @ifnottex
52886
3a30e4cd22e9 Update for extra bit of integer range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 52863
diff changeset
41 -2**28
27193
89afca54a135 @ifinto -> @ifnottex.
Gerd Moellmann <gerd@gnu.org>
parents: 27189
diff changeset
42 @end ifnottex
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 48700
diff changeset
43 @tex
52886
3a30e4cd22e9 Update for extra bit of integer range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 52863
diff changeset
44 @math{-2^{28}}
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
45 @end tex
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 48700
diff changeset
46 to
27193
89afca54a135 @ifinto -> @ifnottex.
Gerd Moellmann <gerd@gnu.org>
parents: 27189
diff changeset
47 @ifnottex
52886
3a30e4cd22e9 Update for extra bit of integer range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 52863
diff changeset
48 2**28 - 1),
27193
89afca54a135 @ifinto -> @ifnottex.
Gerd Moellmann <gerd@gnu.org>
parents: 27189
diff changeset
49 @end ifnottex
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 48700
diff changeset
50 @tex
52886
3a30e4cd22e9 Update for extra bit of integer range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 52863
diff changeset
51 @math{2^{28}-1}),
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
52 @end tex
10558
fbfd717ff79b Fix integer width changes.
Richard M. Stallman <rms@gnu.org>
parents: 10306
diff changeset
53 but some machines may provide a wider range. Many examples in this
52886
3a30e4cd22e9 Update for extra bit of integer range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 52863
diff changeset
54 chapter assume an integer has 29 bits.
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
55 @cindex overflow
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
56
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
57 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
58 initial sign and optional final period.
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 @example
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
61 1 ; @r{The integer 1.}
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
62 1. ; @r{The integer 1.}
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
63 +1 ; @r{Also the integer 1.}
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
64 -1 ; @r{The integer @minus{}1.}
52901
dcdfe0849845 (Integer Basics): Update overflow example.
Luc Teirlinck <teirllm@auburn.edu>
parents: 52886
diff changeset
65 536870913 ; @r{Also the integer 1, due to overflow.}
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
66 0 ; @r{The integer 0.}
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
67 -0 ; @r{The integer 0.}
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
68 @end example
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
69
39198
634358ff84a4 (Integer Basics): Document CL style read syntax for
Eli Zaretskii <eliz@gnu.org>
parents: 38787
diff changeset
70 @cindex integers in specific radix
634358ff84a4 (Integer Basics): Document CL style read syntax for
Eli Zaretskii <eliz@gnu.org>
parents: 38787
diff changeset
71 @cindex radix for reading an integer
634358ff84a4 (Integer Basics): Document CL style read syntax for
Eli Zaretskii <eliz@gnu.org>
parents: 38787
diff changeset
72 @cindex base for reading an integer
52863
a6d4edb94e8e (Integer Basics): Add index entries for reading
Eli Zaretskii <eliz@gnu.org>
parents: 52401
diff changeset
73 @cindex hex numbers
a6d4edb94e8e (Integer Basics): Add index entries for reading
Eli Zaretskii <eliz@gnu.org>
parents: 52401
diff changeset
74 @cindex octal numbers
a6d4edb94e8e (Integer Basics): Add index entries for reading
Eli Zaretskii <eliz@gnu.org>
parents: 52401
diff changeset
75 @cindex reading numbers in hex, octal, and binary
60043
d262f544d0bf (Integer Basics): Clarify radix explanation.
Richard M. Stallman <rms@gnu.org>
parents: 58499
diff changeset
76 The syntax for integers in bases other than 10 uses @samp{#}
d262f544d0bf (Integer Basics): Clarify radix explanation.
Richard M. Stallman <rms@gnu.org>
parents: 58499
diff changeset
77 followed by a letter that specifies the radix: @samp{b} for binary,
d262f544d0bf (Integer Basics): Clarify radix explanation.
Richard M. Stallman <rms@gnu.org>
parents: 58499
diff changeset
78 @samp{o} for octal, @samp{x} for hex, or @samp{@var{radix}r} to
d262f544d0bf (Integer Basics): Clarify radix explanation.
Richard M. Stallman <rms@gnu.org>
parents: 58499
diff changeset
79 specify radix @var{radix}. Case is not significant for the letter
d262f544d0bf (Integer Basics): Clarify radix explanation.
Richard M. Stallman <rms@gnu.org>
parents: 58499
diff changeset
80 that specifies the radix. Thus, @samp{#b@var{integer}} reads
d262f544d0bf (Integer Basics): Clarify radix explanation.
Richard M. Stallman <rms@gnu.org>
parents: 58499
diff changeset
81 @var{integer} in binary, and @samp{#@var{radix}r@var{integer}} reads
d262f544d0bf (Integer Basics): Clarify radix explanation.
Richard M. Stallman <rms@gnu.org>
parents: 58499
diff changeset
82 @var{integer} in radix @var{radix}. Allowed values of @var{radix} run
d262f544d0bf (Integer Basics): Clarify radix explanation.
Richard M. Stallman <rms@gnu.org>
parents: 58499
diff changeset
83 from 2 to 36. For example:
d262f544d0bf (Integer Basics): Clarify radix explanation.
Richard M. Stallman <rms@gnu.org>
parents: 58499
diff changeset
84
d262f544d0bf (Integer Basics): Clarify radix explanation.
Richard M. Stallman <rms@gnu.org>
parents: 58499
diff changeset
85 @example
d262f544d0bf (Integer Basics): Clarify radix explanation.
Richard M. Stallman <rms@gnu.org>
parents: 58499
diff changeset
86 #b101100 @result{} 44
d262f544d0bf (Integer Basics): Clarify radix explanation.
Richard M. Stallman <rms@gnu.org>
parents: 58499
diff changeset
87 #o54 @result{} 44
d262f544d0bf (Integer Basics): Clarify radix explanation.
Richard M. Stallman <rms@gnu.org>
parents: 58499
diff changeset
88 #x2c @result{} 44
d262f544d0bf (Integer Basics): Clarify radix explanation.
Richard M. Stallman <rms@gnu.org>
parents: 58499
diff changeset
89 #24r1k @result{} 44
d262f544d0bf (Integer Basics): Clarify radix explanation.
Richard M. Stallman <rms@gnu.org>
parents: 58499
diff changeset
90 @end example
39198
634358ff84a4 (Integer Basics): Document CL style read syntax for
Eli Zaretskii <eliz@gnu.org>
parents: 38787
diff changeset
91
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
92 To understand how various functions work on integers, especially the
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
93 bitwise operators (@pxref{Bitwise Operations}), it is often helpful to
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
94 view the numbers in their binary form.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
95
52886
3a30e4cd22e9 Update for extra bit of integer range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 52863
diff changeset
96 In 29-bit binary, the decimal integer 5 looks like this:
6510
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 @example
52886
3a30e4cd22e9 Update for extra bit of integer range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 52863
diff changeset
99 0 0000 0000 0000 0000 0000 0000 0101
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
100 @end example
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 @noindent
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
103 (We have inserted spaces between groups of 4 bits, and two spaces
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
104 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
105
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
106 The integer @minus{}1 looks like this:
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
107
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
108 @example
52886
3a30e4cd22e9 Update for extra bit of integer range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 52863
diff changeset
109 1 1111 1111 1111 1111 1111 1111 1111
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
110 @end example
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
111
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
112 @noindent
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
113 @cindex two's complement
52886
3a30e4cd22e9 Update for extra bit of integer range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 52863
diff changeset
114 @minus{}1 is represented as 29 ones. (This is called @dfn{two's
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
115 complement} notation.)
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 The negative integer, @minus{}5, is creating by subtracting 4 from
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
118 @minus{}1. In binary, the decimal integer 4 is 100. Consequently,
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
119 @minus{}5 looks like this:
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
120
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
121 @example
52886
3a30e4cd22e9 Update for extra bit of integer range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 52863
diff changeset
122 1 1111 1111 1111 1111 1111 1111 1011
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
123 @end example
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
124
52886
3a30e4cd22e9 Update for extra bit of integer range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 52863
diff changeset
125 In this implementation, the largest 29-bit binary integer value is
3a30e4cd22e9 Update for extra bit of integer range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 52863
diff changeset
126 268,435,455 in decimal. In binary, it looks like this:
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
127
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
128 @example
52886
3a30e4cd22e9 Update for extra bit of integer range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 52863
diff changeset
129 0 1111 1111 1111 1111 1111 1111 1111
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
130 @end example
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
131
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
132 Since the arithmetic functions do not check whether integers go
52886
3a30e4cd22e9 Update for extra bit of integer range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 52863
diff changeset
133 outside their range, when you add 1 to 268,435,455, the value is the
3a30e4cd22e9 Update for extra bit of integer range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 52863
diff changeset
134 negative integer @minus{}268,435,456:
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
135
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
136 @example
52886
3a30e4cd22e9 Update for extra bit of integer range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 52863
diff changeset
137 (+ 1 268435455)
3a30e4cd22e9 Update for extra bit of integer range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 52863
diff changeset
138 @result{} -268435456
3a30e4cd22e9 Update for extra bit of integer range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 52863
diff changeset
139 @result{} 1 0000 0000 0000 0000 0000 0000 0000
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
140 @end example
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
141
21007
66d807bdc5b4 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 16736
diff changeset
142 Many of the functions described in this chapter accept markers for
66d807bdc5b4 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 16736
diff changeset
143 arguments in place of numbers. (@xref{Markers}.) Since the actual
66d807bdc5b4 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 16736
diff changeset
144 arguments to such functions may be either numbers or markers, we often
66d807bdc5b4 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 16736
diff changeset
145 give these arguments the name @var{number-or-marker}. When the argument
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
146 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
147
51920
8177e11a3638 (Integer Basics): Add most-positive-fixnum, most-negative-fixnum.
Richard M. Stallman <rms@gnu.org>
parents: 49600
diff changeset
148 @defvar most-positive-fixnum
8177e11a3638 (Integer Basics): Add most-positive-fixnum, most-negative-fixnum.
Richard M. Stallman <rms@gnu.org>
parents: 49600
diff changeset
149 The value of this variable is the largest integer that Emacs Lisp
8177e11a3638 (Integer Basics): Add most-positive-fixnum, most-negative-fixnum.
Richard M. Stallman <rms@gnu.org>
parents: 49600
diff changeset
150 can handle.
8177e11a3638 (Integer Basics): Add most-positive-fixnum, most-negative-fixnum.
Richard M. Stallman <rms@gnu.org>
parents: 49600
diff changeset
151 @end defvar
8177e11a3638 (Integer Basics): Add most-positive-fixnum, most-negative-fixnum.
Richard M. Stallman <rms@gnu.org>
parents: 49600
diff changeset
152
8177e11a3638 (Integer Basics): Add most-positive-fixnum, most-negative-fixnum.
Richard M. Stallman <rms@gnu.org>
parents: 49600
diff changeset
153 @defvar most-negative-fixnum
8177e11a3638 (Integer Basics): Add most-positive-fixnum, most-negative-fixnum.
Richard M. Stallman <rms@gnu.org>
parents: 49600
diff changeset
154 The value of this variable is the smallest integer that Emacs Lisp can
8177e11a3638 (Integer Basics): Add most-positive-fixnum, most-negative-fixnum.
Richard M. Stallman <rms@gnu.org>
parents: 49600
diff changeset
155 handle. It is negative.
8177e11a3638 (Integer Basics): Add most-positive-fixnum, most-negative-fixnum.
Richard M. Stallman <rms@gnu.org>
parents: 49600
diff changeset
156 @end defvar
8177e11a3638 (Integer Basics): Add most-positive-fixnum, most-negative-fixnum.
Richard M. Stallman <rms@gnu.org>
parents: 49600
diff changeset
157
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
158 @node Float Basics
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
159 @section Floating Point Basics
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
160
21007
66d807bdc5b4 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 16736
diff changeset
161 Floating point numbers are useful for representing numbers that are
66d807bdc5b4 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 16736
diff changeset
162 not integral. The precise range of floating point numbers is
66d807bdc5b4 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 16736
diff changeset
163 machine-specific; it is the same as the range of the C data type
66d807bdc5b4 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 16736
diff changeset
164 @code{double} on the machine you are using.
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
165
21007
66d807bdc5b4 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 16736
diff changeset
166 The read-syntax for floating point numbers requires either a decimal
66d807bdc5b4 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 16736
diff changeset
167 point (with at least one digit following), an exponent, or both. For
66d807bdc5b4 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 16736
diff changeset
168 example, @samp{1500.0}, @samp{15e2}, @samp{15.0e2}, @samp{1.5e3}, and
66d807bdc5b4 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 16736
diff changeset
169 @samp{.15e4} are five ways of writing a floating point number whose
66d807bdc5b4 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 16736
diff changeset
170 value is 1500. They are all equivalent. You can also use a minus sign
66d807bdc5b4 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 16736
diff changeset
171 to write negative floating point numbers, as in @samp{-1.0}.
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
172
52978
1a5c50faf357 Replace @sc{foo} with @acronym{FOO}.
Eli Zaretskii <eliz@gnu.org>
parents: 52901
diff changeset
173 @cindex @acronym{IEEE} floating point
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
174 @cindex positive infinity
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
175 @cindex negative infinity
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
176 @cindex infinity
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
177 @cindex NaN
53044
aa36f3c0f66e (Numeric Conversions): Not just `floor', but also `truncate',
Luc Teirlinck <teirllm@auburn.edu>
parents: 52978
diff changeset
178 Most modern computers support the @acronym{IEEE} floating point standard,
aa36f3c0f66e (Numeric Conversions): Not just `floor', but also `truncate',
Luc Teirlinck <teirllm@auburn.edu>
parents: 52978
diff changeset
179 which 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
180 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
181 ``not-a-number''; numerical functions return such values in cases where
53465
a603854deb89 (Math Functions): sqrt reports a domain-error
Andreas Schwab <schwab@suse.de>
parents: 53432
diff changeset
182 there is no correct answer. For example, @code{(/ 0.0 0.0)} returns a
7115
9a9e88e65617 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 6510
diff changeset
183 NaN. For practical purposes, there's no significant difference between
9a9e88e65617 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 6510
diff changeset
184 different NaN values in Emacs Lisp, and there's no rule for precisely
21682
90da2489c498 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 21007
diff changeset
185 which NaN value should be used in a particular case, so Emacs Lisp
21007
66d807bdc5b4 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 16736
diff changeset
186 doesn't try to distinguish them. Here are the read syntaxes for
21682
90da2489c498 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 21007
diff changeset
187 these special floating point values:
21007
66d807bdc5b4 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 16736
diff changeset
188
66d807bdc5b4 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 16736
diff changeset
189 @table @asis
66d807bdc5b4 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 16736
diff changeset
190 @item positive infinity
66d807bdc5b4 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 16736
diff changeset
191 @samp{1.0e+INF}
66d807bdc5b4 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 16736
diff changeset
192 @item negative infinity
66d807bdc5b4 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 16736
diff changeset
193 @samp{-1.0e+INF}
66d807bdc5b4 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 16736
diff changeset
194 @item Not-a-number
66d807bdc5b4 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 16736
diff changeset
195 @samp{0.0e+NaN}.
66d807bdc5b4 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 16736
diff changeset
196 @end table
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
197
21682
90da2489c498 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 21007
diff changeset
198 In addition, the value @code{-0.0} is distinguishable from ordinary
53044
aa36f3c0f66e (Numeric Conversions): Not just `floor', but also `truncate',
Luc Teirlinck <teirllm@auburn.edu>
parents: 52978
diff changeset
199 zero in @acronym{IEEE} floating point (although @code{equal} and
aa36f3c0f66e (Numeric Conversions): Not just `floor', but also `truncate',
Luc Teirlinck <teirllm@auburn.edu>
parents: 52978
diff changeset
200 @code{=} consider them equal values).
21682
90da2489c498 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 21007
diff changeset
201
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
202 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
203 point number (or estimate the logarithm of an integer):
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
204
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
205 @defun logb number
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
206 This function returns the binary exponent of @var{number}. More
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
207 precisely, the value is the logarithm of @var{number} base 2, rounded
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
208 down to an integer.
21007
66d807bdc5b4 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 16736
diff changeset
209
66d807bdc5b4 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 16736
diff changeset
210 @example
66d807bdc5b4 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 16736
diff changeset
211 (logb 10)
66d807bdc5b4 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 16736
diff changeset
212 @result{} 3
66d807bdc5b4 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 16736
diff changeset
213 (logb 10.0e20)
66d807bdc5b4 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 16736
diff changeset
214 @result{} 69
66d807bdc5b4 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 16736
diff changeset
215 @end example
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
216 @end defun
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
217
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
218 @node Predicates on Numbers
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
219 @section Type Predicates for Numbers
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
220
60043
d262f544d0bf (Integer Basics): Clarify radix explanation.
Richard M. Stallman <rms@gnu.org>
parents: 58499
diff changeset
221 The functions in this section test for numbers, or for a specific
d262f544d0bf (Integer Basics): Clarify radix explanation.
Richard M. Stallman <rms@gnu.org>
parents: 58499
diff changeset
222 type of number. The functions @code{integerp} and @code{floatp} can
d262f544d0bf (Integer Basics): Clarify radix explanation.
Richard M. Stallman <rms@gnu.org>
parents: 58499
diff changeset
223 take any type of Lisp object as argument (they would not be of much
d262f544d0bf (Integer Basics): Clarify radix explanation.
Richard M. Stallman <rms@gnu.org>
parents: 58499
diff changeset
224 use otherwise), but the @code{zerop} predicate requires a number as
d262f544d0bf (Integer Basics): Clarify radix explanation.
Richard M. Stallman <rms@gnu.org>
parents: 58499
diff changeset
225 its argument. See also @code{integer-or-marker-p} and
d262f544d0bf (Integer Basics): Clarify radix explanation.
Richard M. Stallman <rms@gnu.org>
parents: 58499
diff changeset
226 @code{number-or-marker-p}, in @ref{Predicates on Markers}.
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
227
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
228 @defun floatp object
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
229 This predicate tests whether its argument is a floating point
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
230 number and returns @code{t} if so, @code{nil} otherwise.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
231
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
232 @code{floatp} does not exist in Emacs versions 18 and earlier.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
233 @end defun
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
234
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
235 @defun integerp object
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
236 This predicate tests whether its argument is an integer, and returns
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
237 @code{t} if so, @code{nil} otherwise.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
238 @end defun
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
239
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
240 @defun numberp object
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
241 This predicate tests whether its argument is a number (either integer or
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
242 floating point), and returns @code{t} if so, @code{nil} otherwise.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
243 @end defun
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
244
7115
9a9e88e65617 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 6510
diff changeset
245 @defun wholenump object
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
246 @cindex natural numbers
7115
9a9e88e65617 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 6510
diff changeset
247 The @code{wholenump} predicate (whose name comes from the phrase
9a9e88e65617 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 6510
diff changeset
248 ``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
249 integer, and returns @code{t} if so, @code{nil} otherwise. 0 is
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
250 considered non-negative.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
251
7115
9a9e88e65617 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 6510
diff changeset
252 @findex natnump
9a9e88e65617 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 6510
diff changeset
253 @code{natnump} is an obsolete synonym for @code{wholenump}.
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
254 @end defun
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
255
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
256 @defun zerop number
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
257 This predicate tests whether its argument is zero, and returns @code{t}
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
258 if so, @code{nil} otherwise. The argument must be a number.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
259
60043
d262f544d0bf (Integer Basics): Clarify radix explanation.
Richard M. Stallman <rms@gnu.org>
parents: 58499
diff changeset
260 @code{(zerop x)} is equivalent to @code{(= x 0)}.
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
261 @end defun
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
262
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
263 @node Comparison of Numbers
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
264 @section Comparison of Numbers
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
265 @cindex number equality
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
266
7115
9a9e88e65617 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 6510
diff changeset
267 To test numbers for numerical equality, you should normally use
9a9e88e65617 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 6510
diff changeset
268 @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
269 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
270 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
271 @emph{object}. By contrast, @code{=} compares only the numeric values
9a9e88e65617 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 6510
diff changeset
272 of the objects.
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
273
7115
9a9e88e65617 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 6510
diff changeset
274 At present, each integer value has a unique Lisp object in Emacs Lisp.
21007
66d807bdc5b4 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 16736
diff changeset
275 Therefore, @code{eq} is equivalent to @code{=} where integers are
7115
9a9e88e65617 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 6510
diff changeset
276 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
277 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
278 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
279 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
280 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
281 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
282 representation of integers in a future Emacs version.
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
283
60043
d262f544d0bf (Integer Basics): Clarify radix explanation.
Richard M. Stallman <rms@gnu.org>
parents: 58499
diff changeset
284 Sometimes it is useful to compare numbers with @code{equal}; it
d262f544d0bf (Integer Basics): Clarify radix explanation.
Richard M. Stallman <rms@gnu.org>
parents: 58499
diff changeset
285 treats two numbers as equal if they have the same data type (both
d262f544d0bf (Integer Basics): Clarify radix explanation.
Richard M. Stallman <rms@gnu.org>
parents: 58499
diff changeset
286 integers, or both floating point) and the same value. By contrast,
d262f544d0bf (Integer Basics): Clarify radix explanation.
Richard M. Stallman <rms@gnu.org>
parents: 58499
diff changeset
287 @code{=} can treat an integer and a floating point number as equal.
d262f544d0bf (Integer Basics): Clarify radix explanation.
Richard M. Stallman <rms@gnu.org>
parents: 58499
diff changeset
288 @xref{Equality Predicates}.
22138
d4ac295a98b3 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 21682
diff changeset
289
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
290 There is another wrinkle: because floating point arithmetic is not
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
291 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
292 point values. Usually it is better to test for approximate equality.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
293 Here's a function to do this:
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
294
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
295 @example
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
296 (defvar fuzz-factor 1.0e-6)
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
297 (defun approx-equal (x y)
12098
a6eb5f12b0f3 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 12067
diff changeset
298 (or (and (= x 0) (= y 0))
a6eb5f12b0f3 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 12067
diff changeset
299 (< (/ (abs (- x y))
a6eb5f12b0f3 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 12067
diff changeset
300 (max (abs x) (abs y)))
a6eb5f12b0f3 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 12067
diff changeset
301 fuzz-factor)))
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
302 @end example
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
303
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
304 @cindex CL note---integers vrs @code{eq}
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
305 @quotation
7115
9a9e88e65617 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 6510
diff changeset
306 @b{Common Lisp note:} Comparing numbers in Common Lisp always requires
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
307 @code{=} because Common Lisp implements multi-word integers, and two
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
308 distinct integer objects can have the same numeric value. Emacs Lisp
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
309 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
310 limited range of integer values.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
311 @end quotation
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 = number-or-marker1 number-or-marker2
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
314 This function tests whether its arguments are numerically equal, and
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
315 returns @code{t} if so, @code{nil} otherwise.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
316 @end defun
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
317
58499
2a4a771d6699 (Comparison of Numbers): Add eql.
Richard M. Stallman <rms@gnu.org>
parents: 53465
diff changeset
318 @defun eql value1 value2
60043
d262f544d0bf (Integer Basics): Clarify radix explanation.
Richard M. Stallman <rms@gnu.org>
parents: 58499
diff changeset
319 This function acts like @code{eq} except when both arguments are
d262f544d0bf (Integer Basics): Clarify radix explanation.
Richard M. Stallman <rms@gnu.org>
parents: 58499
diff changeset
320 numbers. It compares numbers by type and numberic value, so that
d262f544d0bf (Integer Basics): Clarify radix explanation.
Richard M. Stallman <rms@gnu.org>
parents: 58499
diff changeset
321 @code{(eql 1.0 1)} returns @code{nil}, but @code{(eql 1.0 1.0)} and
d262f544d0bf (Integer Basics): Clarify radix explanation.
Richard M. Stallman <rms@gnu.org>
parents: 58499
diff changeset
322 @code{(eql 1 1)} both return @code{t}.
58499
2a4a771d6699 (Comparison of Numbers): Add eql.
Richard M. Stallman <rms@gnu.org>
parents: 53465
diff changeset
323 @end defun
2a4a771d6699 (Comparison of Numbers): Add eql.
Richard M. Stallman <rms@gnu.org>
parents: 53465
diff changeset
324
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
325 @defun /= number-or-marker1 number-or-marker2
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
326 This function tests whether its arguments are numerically equal, and
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
327 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
328 @end defun
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
329
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
330 @defun < number-or-marker1 number-or-marker2
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
331 This function tests whether its first argument is strictly less than
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
332 its second argument. It returns @code{t} if so, @code{nil} otherwise.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
333 @end defun
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
334
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
335 @defun <= number-or-marker1 number-or-marker2
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
336 This function tests whether its first argument is less than or equal
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
337 to its second argument. It returns @code{t} if so, @code{nil}
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
338 otherwise.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
339 @end defun
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
340
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
341 @defun > number-or-marker1 number-or-marker2
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
342 This function tests whether its first argument is strictly greater
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
343 than its second argument. It returns @code{t} if so, @code{nil}
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
344 otherwise.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
345 @end defun
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 @defun >= number-or-marker1 number-or-marker2
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
348 This function tests whether its first argument is greater than or
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
349 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
350 otherwise.
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 max number-or-marker &rest numbers-or-markers
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
354 This function returns the largest of its arguments.
60043
d262f544d0bf (Integer Basics): Clarify radix explanation.
Richard M. Stallman <rms@gnu.org>
parents: 58499
diff changeset
355 If any of the arguments is floating-point, the value is returned
25751
467b88fab665 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 25454
diff changeset
356 as floating point, even if it was given as an integer.
6510
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 @example
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
359 (max 20)
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
360 @result{} 20
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
361 (max 1 2.5)
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
362 @result{} 2.5
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
363 (max 1 3 2.5)
25751
467b88fab665 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 25454
diff changeset
364 @result{} 3.0
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
365 @end example
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
366 @end defun
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 @defun min number-or-marker &rest numbers-or-markers
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
369 This function returns the smallest of its arguments.
60043
d262f544d0bf (Integer Basics): Clarify radix explanation.
Richard M. Stallman <rms@gnu.org>
parents: 58499
diff changeset
370 If any of the arguments is floating-point, the value is returned
25751
467b88fab665 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 25454
diff changeset
371 as floating point, even if it was given as an integer.
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
372
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
373 @example
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
374 (min -4 1)
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
375 @result{} -4
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
376 @end example
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
377 @end defun
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
378
21682
90da2489c498 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 21007
diff changeset
379 @defun abs number
22138
d4ac295a98b3 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 21682
diff changeset
380 This function returns the absolute value of @var{number}.
21682
90da2489c498 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 21007
diff changeset
381 @end defun
90da2489c498 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 21007
diff changeset
382
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
383 @node Numeric Conversions
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
384 @section Numeric Conversions
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
385 @cindex rounding in conversions
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
386
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
387 To convert an integer to floating point, use the function @code{float}.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
388
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
389 @defun float number
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
390 This returns @var{number} converted to floating point.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
391 If @var{number} is already a floating point number, @code{float} returns
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
392 it unchanged.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
393 @end defun
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 There are four functions to convert floating point numbers to integers;
53044
aa36f3c0f66e (Numeric Conversions): Not just `floor', but also `truncate',
Luc Teirlinck <teirllm@auburn.edu>
parents: 52978
diff changeset
396 they differ in how they round. All accept an argument @var{number}
aa36f3c0f66e (Numeric Conversions): Not just `floor', but also `truncate',
Luc Teirlinck <teirllm@auburn.edu>
parents: 52978
diff changeset
397 and an optional argument @var{divisor}. Both arguments may be
aa36f3c0f66e (Numeric Conversions): Not just `floor', but also `truncate',
Luc Teirlinck <teirllm@auburn.edu>
parents: 52978
diff changeset
398 integers or floating point numbers. @var{divisor} may also be
aa36f3c0f66e (Numeric Conversions): Not just `floor', but also `truncate',
Luc Teirlinck <teirllm@auburn.edu>
parents: 52978
diff changeset
399 @code{nil}. If @var{divisor} is @code{nil} or omitted, these
aa36f3c0f66e (Numeric Conversions): Not just `floor', but also `truncate',
Luc Teirlinck <teirllm@auburn.edu>
parents: 52978
diff changeset
400 functions convert @var{number} to an integer, or return it unchanged
aa36f3c0f66e (Numeric Conversions): Not just `floor', but also `truncate',
Luc Teirlinck <teirllm@auburn.edu>
parents: 52978
diff changeset
401 if it already is an integer. If @var{divisor} is non-@code{nil}, they
aa36f3c0f66e (Numeric Conversions): Not just `floor', but also `truncate',
Luc Teirlinck <teirllm@auburn.edu>
parents: 52978
diff changeset
402 divide @var{number} by @var{divisor} and convert the result to an
aa36f3c0f66e (Numeric Conversions): Not just `floor', but also `truncate',
Luc Teirlinck <teirllm@auburn.edu>
parents: 52978
diff changeset
403 integer. An @code{arith-error} results if @var{divisor} is 0.
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
404
53044
aa36f3c0f66e (Numeric Conversions): Not just `floor', but also `truncate',
Luc Teirlinck <teirllm@auburn.edu>
parents: 52978
diff changeset
405 @defun truncate number &optional divisor
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
406 This returns @var{number}, converted to an integer by rounding towards
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
407 zero.
38787
4d77816c7cad Add examples for floor, ceiling, truncate, round.
Richard M. Stallman <rms@gnu.org>
parents: 27193
diff changeset
408
4d77816c7cad Add examples for floor, ceiling, truncate, round.
Richard M. Stallman <rms@gnu.org>
parents: 27193
diff changeset
409 @example
4d77816c7cad Add examples for floor, ceiling, truncate, round.
Richard M. Stallman <rms@gnu.org>
parents: 27193
diff changeset
410 (truncate 1.2)
4d77816c7cad Add examples for floor, ceiling, truncate, round.
Richard M. Stallman <rms@gnu.org>
parents: 27193
diff changeset
411 @result{} 1
4d77816c7cad Add examples for floor, ceiling, truncate, round.
Richard M. Stallman <rms@gnu.org>
parents: 27193
diff changeset
412 (truncate 1.7)
4d77816c7cad Add examples for floor, ceiling, truncate, round.
Richard M. Stallman <rms@gnu.org>
parents: 27193
diff changeset
413 @result{} 1
4d77816c7cad Add examples for floor, ceiling, truncate, round.
Richard M. Stallman <rms@gnu.org>
parents: 27193
diff changeset
414 (truncate -1.2)
4d77816c7cad Add examples for floor, ceiling, truncate, round.
Richard M. Stallman <rms@gnu.org>
parents: 27193
diff changeset
415 @result{} -1
4d77816c7cad Add examples for floor, ceiling, truncate, round.
Richard M. Stallman <rms@gnu.org>
parents: 27193
diff changeset
416 (truncate -1.7)
4d77816c7cad Add examples for floor, ceiling, truncate, round.
Richard M. Stallman <rms@gnu.org>
parents: 27193
diff changeset
417 @result{} -1
4d77816c7cad Add examples for floor, ceiling, truncate, round.
Richard M. Stallman <rms@gnu.org>
parents: 27193
diff changeset
418 @end example
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
419 @end defun
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 @defun floor number &optional divisor
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
422 This returns @var{number}, converted to an integer by rounding downward
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
423 (towards negative infinity).
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
424
53044
aa36f3c0f66e (Numeric Conversions): Not just `floor', but also `truncate',
Luc Teirlinck <teirllm@auburn.edu>
parents: 52978
diff changeset
425 If @var{divisor} is specified, this uses the kind of division
aa36f3c0f66e (Numeric Conversions): Not just `floor', but also `truncate',
Luc Teirlinck <teirllm@auburn.edu>
parents: 52978
diff changeset
426 operation that corresponds to @code{mod}, rounding downward.
38787
4d77816c7cad Add examples for floor, ceiling, truncate, round.
Richard M. Stallman <rms@gnu.org>
parents: 27193
diff changeset
427
4d77816c7cad Add examples for floor, ceiling, truncate, round.
Richard M. Stallman <rms@gnu.org>
parents: 27193
diff changeset
428 @example
4d77816c7cad Add examples for floor, ceiling, truncate, round.
Richard M. Stallman <rms@gnu.org>
parents: 27193
diff changeset
429 (floor 1.2)
4d77816c7cad Add examples for floor, ceiling, truncate, round.
Richard M. Stallman <rms@gnu.org>
parents: 27193
diff changeset
430 @result{} 1
4d77816c7cad Add examples for floor, ceiling, truncate, round.
Richard M. Stallman <rms@gnu.org>
parents: 27193
diff changeset
431 (floor 1.7)
4d77816c7cad Add examples for floor, ceiling, truncate, round.
Richard M. Stallman <rms@gnu.org>
parents: 27193
diff changeset
432 @result{} 1
4d77816c7cad Add examples for floor, ceiling, truncate, round.
Richard M. Stallman <rms@gnu.org>
parents: 27193
diff changeset
433 (floor -1.2)
4d77816c7cad Add examples for floor, ceiling, truncate, round.
Richard M. Stallman <rms@gnu.org>
parents: 27193
diff changeset
434 @result{} -2
4d77816c7cad Add examples for floor, ceiling, truncate, round.
Richard M. Stallman <rms@gnu.org>
parents: 27193
diff changeset
435 (floor -1.7)
4d77816c7cad Add examples for floor, ceiling, truncate, round.
Richard M. Stallman <rms@gnu.org>
parents: 27193
diff changeset
436 @result{} -2
4d77816c7cad Add examples for floor, ceiling, truncate, round.
Richard M. Stallman <rms@gnu.org>
parents: 27193
diff changeset
437 (floor 5.99 3)
4d77816c7cad Add examples for floor, ceiling, truncate, round.
Richard M. Stallman <rms@gnu.org>
parents: 27193
diff changeset
438 @result{} 1
4d77816c7cad Add examples for floor, ceiling, truncate, round.
Richard M. Stallman <rms@gnu.org>
parents: 27193
diff changeset
439 @end example
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
440 @end defun
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
441
53044
aa36f3c0f66e (Numeric Conversions): Not just `floor', but also `truncate',
Luc Teirlinck <teirllm@auburn.edu>
parents: 52978
diff changeset
442 @defun ceiling number &optional divisor
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
443 This returns @var{number}, converted to an integer by rounding upward
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
444 (towards positive infinity).
38787
4d77816c7cad Add examples for floor, ceiling, truncate, round.
Richard M. Stallman <rms@gnu.org>
parents: 27193
diff changeset
445
4d77816c7cad Add examples for floor, ceiling, truncate, round.
Richard M. Stallman <rms@gnu.org>
parents: 27193
diff changeset
446 @example
4d77816c7cad Add examples for floor, ceiling, truncate, round.
Richard M. Stallman <rms@gnu.org>
parents: 27193
diff changeset
447 (ceiling 1.2)
4d77816c7cad Add examples for floor, ceiling, truncate, round.
Richard M. Stallman <rms@gnu.org>
parents: 27193
diff changeset
448 @result{} 2
4d77816c7cad Add examples for floor, ceiling, truncate, round.
Richard M. Stallman <rms@gnu.org>
parents: 27193
diff changeset
449 (ceiling 1.7)
4d77816c7cad Add examples for floor, ceiling, truncate, round.
Richard M. Stallman <rms@gnu.org>
parents: 27193
diff changeset
450 @result{} 2
4d77816c7cad Add examples for floor, ceiling, truncate, round.
Richard M. Stallman <rms@gnu.org>
parents: 27193
diff changeset
451 (ceiling -1.2)
4d77816c7cad Add examples for floor, ceiling, truncate, round.
Richard M. Stallman <rms@gnu.org>
parents: 27193
diff changeset
452 @result{} -1
4d77816c7cad Add examples for floor, ceiling, truncate, round.
Richard M. Stallman <rms@gnu.org>
parents: 27193
diff changeset
453 (ceiling -1.7)
4d77816c7cad Add examples for floor, ceiling, truncate, round.
Richard M. Stallman <rms@gnu.org>
parents: 27193
diff changeset
454 @result{} -1
4d77816c7cad Add examples for floor, ceiling, truncate, round.
Richard M. Stallman <rms@gnu.org>
parents: 27193
diff changeset
455 @end example
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
456 @end defun
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
457
53044
aa36f3c0f66e (Numeric Conversions): Not just `floor', but also `truncate',
Luc Teirlinck <teirllm@auburn.edu>
parents: 52978
diff changeset
458 @defun round number &optional divisor
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
459 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
460 nearest integer. Rounding a value equidistant between two integers
a6eb5f12b0f3 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 12067
diff changeset
461 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
462 depending on your machine.
38787
4d77816c7cad Add examples for floor, ceiling, truncate, round.
Richard M. Stallman <rms@gnu.org>
parents: 27193
diff changeset
463
4d77816c7cad Add examples for floor, ceiling, truncate, round.
Richard M. Stallman <rms@gnu.org>
parents: 27193
diff changeset
464 @example
4d77816c7cad Add examples for floor, ceiling, truncate, round.
Richard M. Stallman <rms@gnu.org>
parents: 27193
diff changeset
465 (round 1.2)
4d77816c7cad Add examples for floor, ceiling, truncate, round.
Richard M. Stallman <rms@gnu.org>
parents: 27193
diff changeset
466 @result{} 1
4d77816c7cad Add examples for floor, ceiling, truncate, round.
Richard M. Stallman <rms@gnu.org>
parents: 27193
diff changeset
467 (round 1.7)
4d77816c7cad Add examples for floor, ceiling, truncate, round.
Richard M. Stallman <rms@gnu.org>
parents: 27193
diff changeset
468 @result{} 2
4d77816c7cad Add examples for floor, ceiling, truncate, round.
Richard M. Stallman <rms@gnu.org>
parents: 27193
diff changeset
469 (round -1.2)
4d77816c7cad Add examples for floor, ceiling, truncate, round.
Richard M. Stallman <rms@gnu.org>
parents: 27193
diff changeset
470 @result{} -1
4d77816c7cad Add examples for floor, ceiling, truncate, round.
Richard M. Stallman <rms@gnu.org>
parents: 27193
diff changeset
471 (round -1.7)
4d77816c7cad Add examples for floor, ceiling, truncate, round.
Richard M. Stallman <rms@gnu.org>
parents: 27193
diff changeset
472 @result{} -2
4d77816c7cad Add examples for floor, ceiling, truncate, round.
Richard M. Stallman <rms@gnu.org>
parents: 27193
diff changeset
473 @end example
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
474 @end defun
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 @node Arithmetic Operations
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
477 @section Arithmetic Operations
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
478
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
479 Emacs Lisp provides the traditional four arithmetic operations:
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
480 addition, subtraction, multiplication, and division. Remainder and modulus
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
481 functions supplement the division functions. The functions to
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
482 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
483 commonly used.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
484
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
485 All of these functions except @code{%} return a floating point value
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
486 if any argument is floating.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
487
21682
90da2489c498 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 21007
diff changeset
488 It is important to note that in Emacs Lisp, arithmetic functions
52886
3a30e4cd22e9 Update for extra bit of integer range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 52863
diff changeset
489 do not check for overflow. Thus @code{(1+ 268435455)} may evaluate to
3a30e4cd22e9 Update for extra bit of integer range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 52863
diff changeset
490 @minus{}268435456, depending on your hardware.
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
491
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
492 @defun 1+ number-or-marker
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
493 This function returns @var{number-or-marker} plus 1.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
494 For example,
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
495
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
496 @example
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
497 (setq foo 4)
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
498 @result{} 4
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
499 (1+ foo)
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
500 @result{} 5
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
501 @end example
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
502
12098
a6eb5f12b0f3 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 12067
diff changeset
503 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
504 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
505
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
506 @example
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
507 foo
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
508 @result{} 4
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
509 @end example
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
511 If you want to increment the variable, you must use @code{setq},
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
512 like this:
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
513
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
514 @example
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
515 (setq foo (1+ foo))
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
516 @result{} 5
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
517 @end example
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
518 @end defun
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 @defun 1- number-or-marker
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
521 This function returns @var{number-or-marker} minus 1.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
522 @end defun
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
523
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
524 @defun + &rest numbers-or-markers
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
525 This function adds its arguments together. When given no arguments,
12098
a6eb5f12b0f3 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 12067
diff changeset
526 @code{+} returns 0.
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
527
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
528 @example
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
529 (+)
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
530 @result{} 0
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
531 (+ 1)
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
532 @result{} 1
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
533 (+ 1 2 3 4)
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
534 @result{} 10
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
535 @end example
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
536 @end defun
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
537
21007
66d807bdc5b4 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 16736
diff changeset
538 @defun - &optional number-or-marker &rest more-numbers-or-markers
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
539 The @code{-} function serves two purposes: negation and subtraction.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
540 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
541 argument. When there are multiple arguments, @code{-} subtracts each of
21007
66d807bdc5b4 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 16736
diff changeset
542 the @var{more-numbers-or-markers} from @var{number-or-marker},
12098
a6eb5f12b0f3 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 12067
diff changeset
543 cumulatively. If there are no arguments, the result is 0.
6510
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
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
546 (- 10 1 2 3 4)
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
547 @result{} 0
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
548 (- 10)
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
549 @result{} -10
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
550 (-)
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
551 @result{} 0
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
552 @end example
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
553 @end defun
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
554
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
555 @defun * &rest numbers-or-markers
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
556 This function multiplies its arguments together, and returns the
12098
a6eb5f12b0f3 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 12067
diff changeset
557 product. When given no arguments, @code{*} returns 1.
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
558
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
559 @example
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
560 (*)
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
561 @result{} 1
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
562 (* 1)
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
563 @result{} 1
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
564 (* 1 2 3 4)
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
565 @result{} 24
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 @end defun
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
568
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
569 @defun / dividend divisor &rest divisors
7115
9a9e88e65617 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 6510
diff changeset
570 This function divides @var{dividend} by @var{divisor} and returns the
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
571 quotient. If there are additional arguments @var{divisors}, then it
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
572 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
573 number or a marker.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
574
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
575 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
576 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
577 is rounded towards zero after each division, but some machines may round
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
578 differently with negative arguments. This is because the Lisp function
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
579 @code{/} is implemented using the C division operator, which also
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
580 permits machine-dependent rounding. As a practical matter, all known
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
581 machines round in the standard fashion.
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 @cindex @code{arith-error} in division
21682
90da2489c498 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 21007
diff changeset
584 If you divide an integer by 0, an @code{arith-error} error is signaled.
90da2489c498 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 21007
diff changeset
585 (@xref{Errors}.) Floating point division by zero returns either
52978
1a5c50faf357 Replace @sc{foo} with @acronym{FOO}.
Eli Zaretskii <eliz@gnu.org>
parents: 52901
diff changeset
586 infinity or a NaN if your machine supports @acronym{IEEE} floating point;
21682
90da2489c498 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 21007
diff changeset
587 otherwise, it signals an @code{arith-error} error.
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
588
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
589 @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
590 @group
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
591 (/ 6 2)
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
592 @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
593 @end group
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
594 (/ 5 2)
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
595 @result{} 2
21682
90da2489c498 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 21007
diff changeset
596 (/ 5.0 2)
90da2489c498 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 21007
diff changeset
597 @result{} 2.5
90da2489c498 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 21007
diff changeset
598 (/ 5 2.0)
90da2489c498 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 21007
diff changeset
599 @result{} 2.5
90da2489c498 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 21007
diff changeset
600 (/ 5.0 2.0)
90da2489c498 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 21007
diff changeset
601 @result{} 2.5
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
602 (/ 25 3 2)
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
603 @result{} 4
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
604 (/ -17 6)
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
605 @result{} -2
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
606 @end example
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
607
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
608 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
609 machines.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
610 @end defun
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
611
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
612 @defun % dividend divisor
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
613 @cindex remainder
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
614 This function returns the integer remainder after division of @var{dividend}
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
615 by @var{divisor}. The arguments must be integers or markers.
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 For negative arguments, the remainder is in principle machine-dependent
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
618 since the quotient is; but in practice, all known machines behave alike.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
619
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
620 An @code{arith-error} results if @var{divisor} is 0.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
621
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
622 @example
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
623 (% 9 4)
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
624 @result{} 1
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
625 (% -9 4)
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
626 @result{} -1
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
627 (% 9 -4)
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
628 @result{} 1
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
629 (% -9 -4)
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
630 @result{} -1
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
631 @end example
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
632
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
633 For any two integers @var{dividend} and @var{divisor},
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
634
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
635 @example
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
636 @group
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
637 (+ (% @var{dividend} @var{divisor})
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
638 (* (/ @var{dividend} @var{divisor}) @var{divisor}))
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
639 @end group
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
640 @end example
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
641
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
642 @noindent
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
643 always equals @var{dividend}.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
644 @end defun
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
645
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
646 @defun mod dividend divisor
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
647 @cindex modulus
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
648 This function returns the value of @var{dividend} modulo @var{divisor};
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
649 in other words, the remainder after division of @var{dividend}
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
650 by @var{divisor}, but with the same sign as @var{divisor}.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
651 The arguments must be numbers or markers.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
652
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
653 Unlike @code{%}, @code{mod} returns a well-defined result for negative
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
654 arguments. It also permits floating point arguments; it rounds the
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
655 quotient downward (towards minus infinity) to an integer, and uses that
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
656 quotient to compute the remainder.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
657
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
658 An @code{arith-error} results if @var{divisor} is 0.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
659
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
660 @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
661 @group
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
662 (mod 9 4)
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
663 @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
664 @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
665 @group
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
666 (mod -9 4)
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
667 @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
668 @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
669 @group
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
670 (mod 9 -4)
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
671 @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
672 @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
673 @group
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
674 (mod -9 -4)
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
675 @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
676 @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
677 @group
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
678 (mod 5.5 2.5)
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
679 @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
680 @end group
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
681 @end example
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
682
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
683 For any two numbers @var{dividend} and @var{divisor},
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
684
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
685 @example
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
686 @group
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
687 (+ (mod @var{dividend} @var{divisor})
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
688 (* (floor @var{dividend} @var{divisor}) @var{divisor}))
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
689 @end group
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
690 @end example
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
691
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
692 @noindent
12098
a6eb5f12b0f3 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 12067
diff changeset
693 always equals @var{dividend}, subject to rounding error if either
a6eb5f12b0f3 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 12067
diff changeset
694 argument is floating point. For @code{floor}, see @ref{Numeric
a6eb5f12b0f3 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 12067
diff changeset
695 Conversions}.
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
696 @end defun
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
697
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
698 @node Rounding Operations
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
699 @section Rounding Operations
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
700 @cindex rounding without conversion
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
701
22138
d4ac295a98b3 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 21682
diff changeset
702 The functions @code{ffloor}, @code{fceiling}, @code{fround}, and
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
703 @code{ftruncate} take a floating point argument and return a floating
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
704 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
705 nearest integer below; @code{fceiling}, the nearest integer above;
7115
9a9e88e65617 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 6510
diff changeset
706 @code{ftruncate}, the nearest integer in the direction towards zero;
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
707 @code{fround}, the nearest integer.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
708
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
709 @defun ffloor float
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
710 This function rounds @var{float} to the next lower integral value, and
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
711 returns that value as a floating point number.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
712 @end defun
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
713
8017
ae1a594ebb1d entered into RCS
Richard M. Stallman <rms@gnu.org>
parents: 7115
diff changeset
714 @defun fceiling float
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
715 This function rounds @var{float} to the next higher integral value, and
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
716 returns that value as a floating point number.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
717 @end defun
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
718
7115
9a9e88e65617 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 6510
diff changeset
719 @defun ftruncate float
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
720 This function rounds @var{float} towards zero to an integral value, and
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
721 returns that value as a floating point number.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
722 @end defun
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
723
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
724 @defun fround float
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
725 This function rounds @var{float} to the nearest integral value,
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
726 and returns that value as a floating point number.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
727 @end defun
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
728
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
729 @node Bitwise Operations
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
730 @section Bitwise Operations on Integers
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 In a computer, an integer is represented as a binary number, a
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
733 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
734 operation acts on the individual bits of such a sequence. For example,
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
735 @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
736 reproducing the same pattern ``moved over''.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
737
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
738 The bitwise operations in Emacs Lisp apply only to integers.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
739
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
740 @defun lsh integer1 count
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
741 @cindex logical shift
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
742 @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
743 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
744 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
745 @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
746 (most-significant) bit, producing a positive result even if
9a9e88e65617 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 6510
diff changeset
747 @var{integer1} is negative. Contrast this with @code{ash}, below.
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
748
7115
9a9e88e65617 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 6510
diff changeset
749 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
750 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
751 pattern; the rest are all zero.
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
752
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
753 @example
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
754 @group
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
755 (lsh 5 1)
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
756 @result{} 10
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
757 ;; @r{Decimal 5 becomes decimal 10.}
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
758 00000101 @result{} 00001010
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 (lsh 7 1)
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
761 @result{} 14
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
762 ;; @r{Decimal 7 becomes decimal 14.}
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
763 00000111 @result{} 00001110
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
764 @end group
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
765 @end example
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
766
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
767 @noindent
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
768 As the examples illustrate, shifting the pattern of bits one place to
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
769 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
770 number.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
771
12098
a6eb5f12b0f3 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 12067
diff changeset
772 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
773 like this (with 8-bit binary numbers):
a6eb5f12b0f3 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 12067
diff changeset
774
a6eb5f12b0f3 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 12067
diff changeset
775 @example
a6eb5f12b0f3 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 12067
diff changeset
776 @group
a6eb5f12b0f3 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 12067
diff changeset
777 (lsh 3 2)
a6eb5f12b0f3 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 12067
diff changeset
778 @result{} 12
a6eb5f12b0f3 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 12067
diff changeset
779 ;; @r{Decimal 3 becomes decimal 12.}
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 48700
diff changeset
780 00000011 @result{} 00001100
12098
a6eb5f12b0f3 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 12067
diff changeset
781 @end group
a6eb5f12b0f3 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 12067
diff changeset
782 @end example
a6eb5f12b0f3 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 12067
diff changeset
783
a6eb5f12b0f3 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 12067
diff changeset
784 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
785
a6eb5f12b0f3 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 12067
diff changeset
786 @example
a6eb5f12b0f3 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 12067
diff changeset
787 @group
a6eb5f12b0f3 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 12067
diff changeset
788 (lsh 6 -1)
a6eb5f12b0f3 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 12067
diff changeset
789 @result{} 3
a6eb5f12b0f3 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 12067
diff changeset
790 ;; @r{Decimal 6 becomes decimal 3.}
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 48700
diff changeset
791 00000110 @result{} 00000011
12098
a6eb5f12b0f3 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 12067
diff changeset
792 @end group
a6eb5f12b0f3 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 12067
diff changeset
793
a6eb5f12b0f3 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 12067
diff changeset
794 @group
a6eb5f12b0f3 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 12067
diff changeset
795 (lsh 5 -1)
a6eb5f12b0f3 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 12067
diff changeset
796 @result{} 2
a6eb5f12b0f3 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 12067
diff changeset
797 ;; @r{Decimal 5 becomes decimal 2.}
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 48700
diff changeset
798 00000101 @result{} 00000010
12098
a6eb5f12b0f3 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 12067
diff changeset
799 @end group
a6eb5f12b0f3 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 12067
diff changeset
800 @end example
a6eb5f12b0f3 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 12067
diff changeset
801
a6eb5f12b0f3 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 12067
diff changeset
802 @noindent
a6eb5f12b0f3 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 12067
diff changeset
803 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
804 value of a positive integer by two, rounding downward.
a6eb5f12b0f3 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 12067
diff changeset
805
7115
9a9e88e65617 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 6510
diff changeset
806 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
807 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
808 and change the sign of the number. For example, left shifting
52886
3a30e4cd22e9 Update for extra bit of integer range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 52863
diff changeset
809 268,435,455 produces @minus{}2 on a 29-bit machine:
6510
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 @example
52886
3a30e4cd22e9 Update for extra bit of integer range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 52863
diff changeset
812 (lsh 268435455 1) ; @r{left shift}
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
813 @result{} -2
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
814 @end example
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
815
52886
3a30e4cd22e9 Update for extra bit of integer range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 52863
diff changeset
816 In binary, in the 29-bit implementation, the argument looks like this:
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
817
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
818 @example
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
819 @group
52886
3a30e4cd22e9 Update for extra bit of integer range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 52863
diff changeset
820 ;; @r{Decimal 268,435,455}
3a30e4cd22e9 Update for extra bit of integer range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 52863
diff changeset
821 0 1111 1111 1111 1111 1111 1111 1111
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
822 @end group
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
823 @end example
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
824
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
825 @noindent
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
826 which becomes the following when left shifted:
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
827
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
828 @example
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
829 @group
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
830 ;; @r{Decimal @minus{}2}
52886
3a30e4cd22e9 Update for extra bit of integer range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 52863
diff changeset
831 1 1111 1111 1111 1111 1111 1111 1110
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
832 @end group
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
833 @end example
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
834 @end defun
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
835
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
836 @defun ash integer1 count
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
837 @cindex arithmetic shift
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
838 @code{ash} (@dfn{arithmetic shift}) shifts the bits in @var{integer1}
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
839 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
840 is negative.
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 @code{ash} gives the same results as @code{lsh} except when
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
843 @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
844 @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
845 @code{lsh} puts zeros in those bit positions.
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
846
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
847 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
848 looks like this:
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
849
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
850 @example
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
851 @group
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 48700
diff changeset
852 (ash -6 -1) @result{} -3
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
853 ;; @r{Decimal @minus{}6 becomes decimal @minus{}3.}
52886
3a30e4cd22e9 Update for extra bit of integer range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 52863
diff changeset
854 1 1111 1111 1111 1111 1111 1111 1010
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 48700
diff changeset
855 @result{}
52886
3a30e4cd22e9 Update for extra bit of integer range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 52863
diff changeset
856 1 1111 1111 1111 1111 1111 1111 1101
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
857 @end group
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
858 @end example
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
859
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
860 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
861 @code{lsh} looks like this:
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
862
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
863 @example
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
864 @group
52886
3a30e4cd22e9 Update for extra bit of integer range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 52863
diff changeset
865 (lsh -6 -1) @result{} 268435453
3a30e4cd22e9 Update for extra bit of integer range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 52863
diff changeset
866 ;; @r{Decimal @minus{}6 becomes decimal 268,435,453.}
3a30e4cd22e9 Update for extra bit of integer range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 52863
diff changeset
867 1 1111 1111 1111 1111 1111 1111 1010
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 48700
diff changeset
868 @result{}
52886
3a30e4cd22e9 Update for extra bit of integer range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 52863
diff changeset
869 0 1111 1111 1111 1111 1111 1111 1101
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
870 @end group
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
871 @end example
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
872
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
873 Here are other examples:
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
874
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
875 @c !!! Check if lined up in smallbook format! XDVI shows problem
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
876 @c with smallbook but not with regular book! --rjc 16mar92
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
877 @smallexample
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
878 @group
52886
3a30e4cd22e9 Update for extra bit of integer range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 52863
diff changeset
879 ; @r{ 29-bit binary values}
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
880
52886
3a30e4cd22e9 Update for extra bit of integer range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 52863
diff changeset
881 (lsh 5 2) ; 5 = @r{0 0000 0000 0000 0000 0000 0000 0101}
3a30e4cd22e9 Update for extra bit of integer range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 52863
diff changeset
882 @result{} 20 ; = @r{0 0000 0000 0000 0000 0000 0001 0100}
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
883 @end group
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
884 @group
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
885 (ash 5 2)
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
886 @result{} 20
52886
3a30e4cd22e9 Update for extra bit of integer range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 52863
diff changeset
887 (lsh -5 2) ; -5 = @r{1 1111 1111 1111 1111 1111 1111 1011}
3a30e4cd22e9 Update for extra bit of integer range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 52863
diff changeset
888 @result{} -20 ; = @r{1 1111 1111 1111 1111 1111 1110 1100}
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
889 (ash -5 2)
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
890 @result{} -20
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
891 @end group
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
892 @group
52886
3a30e4cd22e9 Update for extra bit of integer range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 52863
diff changeset
893 (lsh 5 -2) ; 5 = @r{0 0000 0000 0000 0000 0000 0000 0101}
3a30e4cd22e9 Update for extra bit of integer range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 52863
diff changeset
894 @result{} 1 ; = @r{0 0000 0000 0000 0000 0000 0000 0001}
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
895 @end group
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
896 @group
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
897 (ash 5 -2)
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
898 @result{} 1
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 @group
52886
3a30e4cd22e9 Update for extra bit of integer range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 52863
diff changeset
901 (lsh -5 -2) ; -5 = @r{1 1111 1111 1111 1111 1111 1111 1011}
3a30e4cd22e9 Update for extra bit of integer range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 52863
diff changeset
902 @result{} 134217726 ; = @r{0 0111 1111 1111 1111 1111 1111 1110}
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
903 @end group
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
904 @group
52886
3a30e4cd22e9 Update for extra bit of integer range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 52863
diff changeset
905 (ash -5 -2) ; -5 = @r{1 1111 1111 1111 1111 1111 1111 1011}
3a30e4cd22e9 Update for extra bit of integer range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 52863
diff changeset
906 @result{} -2 ; = @r{1 1111 1111 1111 1111 1111 1111 1110}
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
907 @end group
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
908 @end smallexample
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
909 @end defun
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
910
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
911 @defun logand &rest ints-or-markers
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
912 @cindex logical and
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
913 @cindex bitwise and
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
914 This function returns the ``logical and'' of the arguments: the
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
915 @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
916 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
917 rather than 0.)
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
918
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
919 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
920 12 is 12: 1101 combined with 1100 produces 1100.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
921 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
922 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
923 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
924 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
925
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
926 @noindent
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
927 Therefore,
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
928
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
929 @example
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
930 @group
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
931 (logand 13 12)
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
932 @result{} 12
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
933 @end group
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
934 @end example
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
935
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
936 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
937 @minus{}1. This number is an identity element for @code{logand}
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
938 because its binary representation consists entirely of ones. If
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
939 @code{logand} is passed just one argument, it returns that argument.
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 @smallexample
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
942 @group
52886
3a30e4cd22e9 Update for extra bit of integer range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 52863
diff changeset
943 ; @r{ 29-bit binary values}
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
944
52886
3a30e4cd22e9 Update for extra bit of integer range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 52863
diff changeset
945 (logand 14 13) ; 14 = @r{0 0000 0000 0000 0000 0000 0000 1110}
3a30e4cd22e9 Update for extra bit of integer range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 52863
diff changeset
946 ; 13 = @r{0 0000 0000 0000 0000 0000 0000 1101}
3a30e4cd22e9 Update for extra bit of integer range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 52863
diff changeset
947 @result{} 12 ; 12 = @r{0 0000 0000 0000 0000 0000 0000 1100}
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
948 @end group
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
949
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
950 @group
52886
3a30e4cd22e9 Update for extra bit of integer range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 52863
diff changeset
951 (logand 14 13 4) ; 14 = @r{0 0000 0000 0000 0000 0000 0000 1110}
3a30e4cd22e9 Update for extra bit of integer range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 52863
diff changeset
952 ; 13 = @r{0 0000 0000 0000 0000 0000 0000 1101}
3a30e4cd22e9 Update for extra bit of integer range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 52863
diff changeset
953 ; 4 = @r{0 0000 0000 0000 0000 0000 0000 0100}
3a30e4cd22e9 Update for extra bit of integer range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 52863
diff changeset
954 @result{} 4 ; 4 = @r{0 0000 0000 0000 0000 0000 0000 0100}
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
955 @end group
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
956
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
957 @group
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
958 (logand)
52886
3a30e4cd22e9 Update for extra bit of integer range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 52863
diff changeset
959 @result{} -1 ; -1 = @r{1 1111 1111 1111 1111 1111 1111 1111}
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
960 @end group
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
961 @end smallexample
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 @defun logior &rest ints-or-markers
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
965 @cindex logical inclusive or
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
966 @cindex bitwise or
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
967 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
968 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
969 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
970 which is an identity element for this operation. If @code{logior} is
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
971 passed just one argument, it returns that argument.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
972
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
973 @smallexample
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
974 @group
52886
3a30e4cd22e9 Update for extra bit of integer range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 52863
diff changeset
975 ; @r{ 29-bit binary values}
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
976
52886
3a30e4cd22e9 Update for extra bit of integer range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 52863
diff changeset
977 (logior 12 5) ; 12 = @r{0 0000 0000 0000 0000 0000 0000 1100}
3a30e4cd22e9 Update for extra bit of integer range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 52863
diff changeset
978 ; 5 = @r{0 0000 0000 0000 0000 0000 0000 0101}
3a30e4cd22e9 Update for extra bit of integer range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 52863
diff changeset
979 @result{} 13 ; 13 = @r{0 0000 0000 0000 0000 0000 0000 1101}
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
980 @end group
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
981
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
982 @group
52886
3a30e4cd22e9 Update for extra bit of integer range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 52863
diff changeset
983 (logior 12 5 7) ; 12 = @r{0 0000 0000 0000 0000 0000 0000 1100}
3a30e4cd22e9 Update for extra bit of integer range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 52863
diff changeset
984 ; 5 = @r{0 0000 0000 0000 0000 0000 0000 0101}
3a30e4cd22e9 Update for extra bit of integer range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 52863
diff changeset
985 ; 7 = @r{0 0000 0000 0000 0000 0000 0000 0111}
3a30e4cd22e9 Update for extra bit of integer range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 52863
diff changeset
986 @result{} 15 ; 15 = @r{0 0000 0000 0000 0000 0000 0000 1111}
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
987 @end group
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
988 @end smallexample
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 logxor &rest ints-or-markers
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
992 @cindex bitwise exclusive or
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
993 @cindex logical exclusive or
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
994 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
995 @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
996 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
997 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
998 @code{logxor} is passed just one argument, it returns that argument.
6510
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 @smallexample
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1001 @group
52886
3a30e4cd22e9 Update for extra bit of integer range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 52863
diff changeset
1002 ; @r{ 29-bit binary values}
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1003
52886
3a30e4cd22e9 Update for extra bit of integer range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 52863
diff changeset
1004 (logxor 12 5) ; 12 = @r{0 0000 0000 0000 0000 0000 0000 1100}
3a30e4cd22e9 Update for extra bit of integer range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 52863
diff changeset
1005 ; 5 = @r{0 0000 0000 0000 0000 0000 0000 0101}
3a30e4cd22e9 Update for extra bit of integer range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 52863
diff changeset
1006 @result{} 9 ; 9 = @r{0 0000 0000 0000 0000 0000 0000 1001}
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1007 @end group
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1008
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1009 @group
52886
3a30e4cd22e9 Update for extra bit of integer range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 52863
diff changeset
1010 (logxor 12 5 7) ; 12 = @r{0 0000 0000 0000 0000 0000 0000 1100}
3a30e4cd22e9 Update for extra bit of integer range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 52863
diff changeset
1011 ; 5 = @r{0 0000 0000 0000 0000 0000 0000 0101}
3a30e4cd22e9 Update for extra bit of integer range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 52863
diff changeset
1012 ; 7 = @r{0 0000 0000 0000 0000 0000 0000 0111}
3a30e4cd22e9 Update for extra bit of integer range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 52863
diff changeset
1013 @result{} 14 ; 14 = @r{0 0000 0000 0000 0000 0000 0000 1110}
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1014 @end group
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1015 @end smallexample
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1016 @end defun
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1017
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1018 @defun lognot integer
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1019 @cindex logical not
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1020 @cindex bitwise not
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1021 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
1022 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
1023 @var{integer}, and vice-versa.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1024
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1025 @example
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 48700
diff changeset
1026 (lognot 5)
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1027 @result{} -6
52886
3a30e4cd22e9 Update for extra bit of integer range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 52863
diff changeset
1028 ;; 5 = @r{0 0000 0000 0000 0000 0000 0000 0101}
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1029 ;; @r{becomes}
52886
3a30e4cd22e9 Update for extra bit of integer range.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 52863
diff changeset
1030 ;; -6 = @r{1 1111 1111 1111 1111 1111 1111 1010}
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1031 @end example
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1032 @end defun
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1033
11230
c6b70cdf844e Don't call the special math functions "transcendental".
Richard M. Stallman <rms@gnu.org>
parents: 10558
diff changeset
1034 @node Math Functions
c6b70cdf844e Don't call the special math functions "transcendental".
Richard M. Stallman <rms@gnu.org>
parents: 10558
diff changeset
1035 @section Standard Mathematical Functions
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1036 @cindex transcendental functions
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1037 @cindex mathematical functions
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1038
21682
90da2489c498 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 21007
diff changeset
1039 These mathematical functions allow integers as well as floating point
90da2489c498 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 21007
diff changeset
1040 numbers as arguments.
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1041
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1042 @defun sin arg
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1043 @defunx cos arg
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1044 @defunx tan arg
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1045 These are the ordinary trigonometric functions, with argument measured
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1046 in radians.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1047 @end defun
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1048
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1049 @defun asin arg
25454
80ac191b6d2b *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 22138
diff changeset
1050 The value of @code{(asin @var{arg})} is a number between
27193
89afca54a135 @ifinto -> @ifnottex.
Gerd Moellmann <gerd@gnu.org>
parents: 27189
diff changeset
1051 @ifnottex
25454
80ac191b6d2b *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 22138
diff changeset
1052 @minus{}pi/2
27193
89afca54a135 @ifinto -> @ifnottex.
Gerd Moellmann <gerd@gnu.org>
parents: 27189
diff changeset
1053 @end ifnottex
25454
80ac191b6d2b *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 22138
diff changeset
1054 @tex
25751
467b88fab665 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 25454
diff changeset
1055 @math{-\pi/2}
25454
80ac191b6d2b *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 22138
diff changeset
1056 @end tex
80ac191b6d2b *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 22138
diff changeset
1057 and
27193
89afca54a135 @ifinto -> @ifnottex.
Gerd Moellmann <gerd@gnu.org>
parents: 27189
diff changeset
1058 @ifnottex
25454
80ac191b6d2b *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 22138
diff changeset
1059 pi/2
27193
89afca54a135 @ifinto -> @ifnottex.
Gerd Moellmann <gerd@gnu.org>
parents: 27189
diff changeset
1060 @end ifnottex
25454
80ac191b6d2b *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 22138
diff changeset
1061 @tex
25751
467b88fab665 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 25454
diff changeset
1062 @math{\pi/2}
25454
80ac191b6d2b *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 22138
diff changeset
1063 @end tex
53432
7dd1ab1ebb2c (Math Functions): asin, acos, log, log10 report domain-error errors.
Richard M. Stallman <rms@gnu.org>
parents: 53044
diff changeset
1064 (inclusive) whose sine is @var{arg}; if, however, @var{arg} is out of
7dd1ab1ebb2c (Math Functions): asin, acos, log, log10 report domain-error errors.
Richard M. Stallman <rms@gnu.org>
parents: 53044
diff changeset
1065 range (outside [-1, 1]), it signals a @code{domain-error} error.
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1066 @end defun
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1067
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1068 @defun acos arg
25454
80ac191b6d2b *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 22138
diff changeset
1069 The value of @code{(acos @var{arg})} is a number between 0 and
27193
89afca54a135 @ifinto -> @ifnottex.
Gerd Moellmann <gerd@gnu.org>
parents: 27189
diff changeset
1070 @ifnottex
25454
80ac191b6d2b *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 22138
diff changeset
1071 pi
27193
89afca54a135 @ifinto -> @ifnottex.
Gerd Moellmann <gerd@gnu.org>
parents: 27189
diff changeset
1072 @end ifnottex
25454
80ac191b6d2b *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 22138
diff changeset
1073 @tex
25751
467b88fab665 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 25454
diff changeset
1074 @math{\pi}
25454
80ac191b6d2b *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 22138
diff changeset
1075 @end tex
53432
7dd1ab1ebb2c (Math Functions): asin, acos, log, log10 report domain-error errors.
Richard M. Stallman <rms@gnu.org>
parents: 53044
diff changeset
1076 (inclusive) whose cosine is @var{arg}; if, however, @var{arg} is out
7dd1ab1ebb2c (Math Functions): asin, acos, log, log10 report domain-error errors.
Richard M. Stallman <rms@gnu.org>
parents: 53044
diff changeset
1077 of range (outside [-1, 1]), it signals a @code{domain-error} error.
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1078 @end defun
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1079
43414
90f3a1f6ee84 (Math Functions): Document the optional second arg of atan.
Eli Zaretskii <eliz@gnu.org>
parents: 39198
diff changeset
1080 @defun atan y &optional x
90f3a1f6ee84 (Math Functions): Document the optional second arg of atan.
Eli Zaretskii <eliz@gnu.org>
parents: 39198
diff changeset
1081 The value of @code{(atan @var{y})} is a number between
27193
89afca54a135 @ifinto -> @ifnottex.
Gerd Moellmann <gerd@gnu.org>
parents: 27189
diff changeset
1082 @ifnottex
25454
80ac191b6d2b *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 22138
diff changeset
1083 @minus{}pi/2
27193
89afca54a135 @ifinto -> @ifnottex.
Gerd Moellmann <gerd@gnu.org>
parents: 27189
diff changeset
1084 @end ifnottex
25454
80ac191b6d2b *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 22138
diff changeset
1085 @tex
25751
467b88fab665 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 25454
diff changeset
1086 @math{-\pi/2}
25454
80ac191b6d2b *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 22138
diff changeset
1087 @end tex
80ac191b6d2b *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 22138
diff changeset
1088 and
27193
89afca54a135 @ifinto -> @ifnottex.
Gerd Moellmann <gerd@gnu.org>
parents: 27189
diff changeset
1089 @ifnottex
25454
80ac191b6d2b *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 22138
diff changeset
1090 pi/2
27193
89afca54a135 @ifinto -> @ifnottex.
Gerd Moellmann <gerd@gnu.org>
parents: 27189
diff changeset
1091 @end ifnottex
25454
80ac191b6d2b *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 22138
diff changeset
1092 @tex
25751
467b88fab665 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 25454
diff changeset
1093 @math{\pi/2}
25454
80ac191b6d2b *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 22138
diff changeset
1094 @end tex
43414
90f3a1f6ee84 (Math Functions): Document the optional second arg of atan.
Eli Zaretskii <eliz@gnu.org>
parents: 39198
diff changeset
1095 (exclusive) whose tangent is @var{y}. If the optional second
90f3a1f6ee84 (Math Functions): Document the optional second arg of atan.
Eli Zaretskii <eliz@gnu.org>
parents: 39198
diff changeset
1096 argument @var{x} is given, the value of @code{(atan y x)} is the
90f3a1f6ee84 (Math Functions): Document the optional second arg of atan.
Eli Zaretskii <eliz@gnu.org>
parents: 39198
diff changeset
1097 angle in radians between the vector @code{[@var{x}, @var{y}]} and the
90f3a1f6ee84 (Math Functions): Document the optional second arg of atan.
Eli Zaretskii <eliz@gnu.org>
parents: 39198
diff changeset
1098 @code{X} axis.
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1099 @end defun
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1100
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1101 @defun exp arg
22138
d4ac295a98b3 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 21682
diff changeset
1102 This is the exponential function; it returns
d4ac295a98b3 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 21682
diff changeset
1103 @tex
25751
467b88fab665 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 25454
diff changeset
1104 @math{e}
22138
d4ac295a98b3 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 21682
diff changeset
1105 @end tex
27193
89afca54a135 @ifinto -> @ifnottex.
Gerd Moellmann <gerd@gnu.org>
parents: 27189
diff changeset
1106 @ifnottex
22138
d4ac295a98b3 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 21682
diff changeset
1107 @i{e}
27193
89afca54a135 @ifinto -> @ifnottex.
Gerd Moellmann <gerd@gnu.org>
parents: 27189
diff changeset
1108 @end ifnottex
22138
d4ac295a98b3 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 21682
diff changeset
1109 to the power @var{arg}.
d4ac295a98b3 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 21682
diff changeset
1110 @tex
25751
467b88fab665 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 25454
diff changeset
1111 @math{e}
22138
d4ac295a98b3 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 21682
diff changeset
1112 @end tex
27193
89afca54a135 @ifinto -> @ifnottex.
Gerd Moellmann <gerd@gnu.org>
parents: 27189
diff changeset
1113 @ifnottex
22138
d4ac295a98b3 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 21682
diff changeset
1114 @i{e}
27193
89afca54a135 @ifinto -> @ifnottex.
Gerd Moellmann <gerd@gnu.org>
parents: 27189
diff changeset
1115 @end ifnottex
22138
d4ac295a98b3 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 21682
diff changeset
1116 is a fundamental mathematical constant also called the base of natural
d4ac295a98b3 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 21682
diff changeset
1117 logarithms.
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1118 @end defun
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1119
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1120 @defun log arg &optional base
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1121 This function returns the logarithm of @var{arg}, with base @var{base}.
22138
d4ac295a98b3 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 21682
diff changeset
1122 If you don't specify @var{base}, the base
d4ac295a98b3 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 21682
diff changeset
1123 @tex
25751
467b88fab665 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 25454
diff changeset
1124 @math{e}
22138
d4ac295a98b3 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 21682
diff changeset
1125 @end tex
27193
89afca54a135 @ifinto -> @ifnottex.
Gerd Moellmann <gerd@gnu.org>
parents: 27189
diff changeset
1126 @ifnottex
22138
d4ac295a98b3 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 21682
diff changeset
1127 @i{e}
27193
89afca54a135 @ifinto -> @ifnottex.
Gerd Moellmann <gerd@gnu.org>
parents: 27189
diff changeset
1128 @end ifnottex
53432
7dd1ab1ebb2c (Math Functions): asin, acos, log, log10 report domain-error errors.
Richard M. Stallman <rms@gnu.org>
parents: 53044
diff changeset
1129 is used. If @var{arg} is negative, it signals a @code{domain-error}
7dd1ab1ebb2c (Math Functions): asin, acos, log, log10 report domain-error errors.
Richard M. Stallman <rms@gnu.org>
parents: 53044
diff changeset
1130 error.
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1131 @end defun
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1132
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1133 @ignore
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1134 @defun expm1 arg
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1135 This function returns @code{(1- (exp @var{arg}))}, but it is more
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1136 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
1137 is close to 1.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1138 @end defun
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1139
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1140 @defun log1p arg
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1141 This function returns @code{(log (1+ @var{arg}))}, but it is more
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1142 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
1143 lose accuracy.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1144 @end defun
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1145 @end ignore
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1146
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1147 @defun log10 arg
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1148 This function returns the logarithm of @var{arg}, with base 10. If
53432
7dd1ab1ebb2c (Math Functions): asin, acos, log, log10 report domain-error errors.
Richard M. Stallman <rms@gnu.org>
parents: 53044
diff changeset
1149 @var{arg} is negative, it signals a @code{domain-error} error.
7dd1ab1ebb2c (Math Functions): asin, acos, log, log10 report domain-error errors.
Richard M. Stallman <rms@gnu.org>
parents: 53044
diff changeset
1150 @code{(log10 @var{x})} @equiv{} @code{(log @var{x} 10)}, at least
7dd1ab1ebb2c (Math Functions): asin, acos, log, log10 report domain-error errors.
Richard M. Stallman <rms@gnu.org>
parents: 53044
diff changeset
1151 approximately.
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1152 @end defun
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1153
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1154 @defun expt x y
10306
89f8d7f3bd73 Integers now at least 28 bits.
Richard M. Stallman <rms@gnu.org>
parents: 8017
diff changeset
1155 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
1156 arguments are integers and @var{y} is positive, the result is an
60043
d262f544d0bf (Integer Basics): Clarify radix explanation.
Richard M. Stallman <rms@gnu.org>
parents: 58499
diff changeset
1157 integer; in this case, overflow causes truncation, so watch out.
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1158 @end defun
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1159
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1160 @defun sqrt arg
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1161 This returns the square root of @var{arg}. If @var{arg} is negative,
53465
a603854deb89 (Math Functions): sqrt reports a domain-error
Andreas Schwab <schwab@suse.de>
parents: 53432
diff changeset
1162 it signals a @code{domain-error} error.
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1163 @end defun
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1164
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1165 @node Random Numbers
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1166 @section Random Numbers
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1167 @cindex random numbers
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1168
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1169 A deterministic computer program cannot generate true random numbers.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1170 For most purposes, @dfn{pseudo-random numbers} suffice. A series of
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1171 pseudo-random numbers is generated in a deterministic fashion. The
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1172 numbers are not truly random, but they have certain properties that
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1173 mimic a random series. For example, all possible values occur equally
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1174 often in a pseudo-random series.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1175
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1176 In Emacs, pseudo-random numbers are generated from a ``seed'' number.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1177 Starting from any given seed, the @code{random} function always
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1178 generates the same sequence of numbers. Emacs always starts with the
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1179 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
1180 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
1181 first call to @code{(random)} after you start Emacs always returns
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1182 -1457731, and the second one always returns -7692030. This
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1183 repeatability is helpful for debugging.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1184
25751
467b88fab665 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 25454
diff changeset
1185 If you want random numbers that don't always come out the same, execute
467b88fab665 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 25454
diff changeset
1186 @code{(random t)}. This chooses a new seed based on the current time of
52978
1a5c50faf357 Replace @sc{foo} with @acronym{FOO}.
Eli Zaretskii <eliz@gnu.org>
parents: 52901
diff changeset
1187 day and on Emacs's process @acronym{ID} number.
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1188
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1189 @defun random &optional limit
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1190 This function returns a pseudo-random integer. Repeated calls return a
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1191 series of pseudo-random integers.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1192
12067
73dc8205d259 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 11230
diff changeset
1193 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
1194 nonnegative and less than @var{limit}.
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1195
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1196 If @var{limit} is @code{t}, it means to choose a new seed based on the
52978
1a5c50faf357 Replace @sc{foo} with @acronym{FOO}.
Eli Zaretskii <eliz@gnu.org>
parents: 52901
diff changeset
1197 current time of day and on Emacs's process @acronym{ID} number.
6510
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1198 @c "Emacs'" is incorrect usage!
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1199
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1200 On some machines, any integer representable in Lisp may be the result
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1201 of @code{random}. On other machines, the result can never be larger
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1202 than a certain maximum or less than a certain (negative) minimum.
e18202af3602 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1203 @end defun
52401
695cf19ef79e Add arch taglines
Miles Bader <miles@gnu.org>
parents: 51920
diff changeset
1204
695cf19ef79e Add arch taglines
Miles Bader <miles@gnu.org>
parents: 51920
diff changeset
1205 @ignore
695cf19ef79e Add arch taglines
Miles Bader <miles@gnu.org>
parents: 51920
diff changeset
1206 arch-tag: 574e8dd2-d513-4616-9844-c9a27869782e
695cf19ef79e Add arch taglines
Miles Bader <miles@gnu.org>
parents: 51920
diff changeset
1207 @end ignore