Mercurial > hg > octave-lyh
annotate doc/interpreter/arith.txi @ 10791:3140cb7a05a1
Add spellchecker scripts for Octave and run spellcheck of documentation
interpreter/doccheck: New directory for spelling/grammar scripts.
interpreter/doccheck/README: Instructions for using scripts.
interpreter/doccheck/spellcheck: Script to spellcheck a Texinfo file.
interpreter/doccheck/aspell.conf: GNU Aspell configuration file for
Octave documentation.
interpreter/doccheck/aspell-octave.en.pws: Private Aspell dictionary.
interpreter/doccheck/add_to_aspell_dict: Script to add new
Octave-specific words to
private Aspell dictionary.
interpreter/octave.texi: New @nospell macro which forces Aspell
to ignore the word marked by the macro.
interpreter/mk_doc_cache.m: Skip new @nospell macro when building
doc_cache.
author | Rik <octave@nomad.inbox5.com> |
---|---|
date | Sat, 17 Jul 2010 19:53:01 -0700 |
parents | 72585f1ca7a2 |
children | 322f43e0e170 |
rev | line source |
---|---|
8920 | 1 @c Copyright (C) 1996, 1997, 1999, 2000, 2001, 2002, 2007, 2008, |
2 @c 2009 John W. Eaton | |
7018 | 3 @c |
4 @c This file is part of Octave. | |
5 @c | |
6 @c Octave is free software; you can redistribute it and/or modify it | |
7 @c under the terms of the GNU General Public License as published by the | |
8 @c Free Software Foundation; either version 3 of the License, or (at | |
9 @c your option) any later version. | |
10 @c | |
11 @c Octave is distributed in the hope that it will be useful, but WITHOUT | |
12 @c ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | |
13 @c FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License | |
14 @c for more details. | |
15 @c | |
16 @c You should have received a copy of the GNU General Public License | |
17 @c along with Octave; see the file COPYING. If not, see | |
18 @c <http://www.gnu.org/licenses/>. | |
3294 | 19 |
4167 | 20 @node Arithmetic |
3294 | 21 @chapter Arithmetic |
22 | |
23 Unless otherwise noted, all of the functions described in this chapter | |
9141
c1fff751b5a8
Update section 17.1 (Utility Functions) of arith.txi
Rik <rdrider0-list@yahoo.com>
parents:
9064
diff
changeset
|
24 will work for real and complex scalar, vector, or matrix arguments. Functions |
c1fff751b5a8
Update section 17.1 (Utility Functions) of arith.txi
Rik <rdrider0-list@yahoo.com>
parents:
9064
diff
changeset
|
25 described as @dfn{mapping functions} apply the given operation individually to |
c1fff751b5a8
Update section 17.1 (Utility Functions) of arith.txi
Rik <rdrider0-list@yahoo.com>
parents:
9064
diff
changeset
|
26 each element when given a matrix argument. For example, |
c1fff751b5a8
Update section 17.1 (Utility Functions) of arith.txi
Rik <rdrider0-list@yahoo.com>
parents:
9064
diff
changeset
|
27 |
c1fff751b5a8
Update section 17.1 (Utility Functions) of arith.txi
Rik <rdrider0-list@yahoo.com>
parents:
9064
diff
changeset
|
28 @example |
c1fff751b5a8
Update section 17.1 (Utility Functions) of arith.txi
Rik <rdrider0-list@yahoo.com>
parents:
9064
diff
changeset
|
29 @group |
c1fff751b5a8
Update section 17.1 (Utility Functions) of arith.txi
Rik <rdrider0-list@yahoo.com>
parents:
9064
diff
changeset
|
30 sin ([1, 2; 3, 4]) |
c1fff751b5a8
Update section 17.1 (Utility Functions) of arith.txi
Rik <rdrider0-list@yahoo.com>
parents:
9064
diff
changeset
|
31 @result{} 0.84147 0.90930 |
c1fff751b5a8
Update section 17.1 (Utility Functions) of arith.txi
Rik <rdrider0-list@yahoo.com>
parents:
9064
diff
changeset
|
32 0.14112 -0.75680 |
c1fff751b5a8
Update section 17.1 (Utility Functions) of arith.txi
Rik <rdrider0-list@yahoo.com>
parents:
9064
diff
changeset
|
33 @end group |
c1fff751b5a8
Update section 17.1 (Utility Functions) of arith.txi
Rik <rdrider0-list@yahoo.com>
parents:
9064
diff
changeset
|
34 @end example |
3294 | 35 |
36 @menu | |
9141
c1fff751b5a8
Update section 17.1 (Utility Functions) of arith.txi
Rik <rdrider0-list@yahoo.com>
parents:
9064
diff
changeset
|
37 * Exponents and Logarithms:: |
3294 | 38 * Complex Arithmetic:: |
39 * Trigonometry:: | |
40 * Sums and Products:: | |
9141
c1fff751b5a8
Update section 17.1 (Utility Functions) of arith.txi
Rik <rdrider0-list@yahoo.com>
parents:
9064
diff
changeset
|
41 * Utility Functions:: |
3294 | 42 * Special Functions:: |
3803 | 43 * Coordinate Transformations:: |
3294 | 44 * Mathematical Constants:: |
45 @end menu | |
46 | |
9141
c1fff751b5a8
Update section 17.1 (Utility Functions) of arith.txi
Rik <rdrider0-list@yahoo.com>
parents:
9064
diff
changeset
|
47 @node Exponents and Logarithms |
c1fff751b5a8
Update section 17.1 (Utility Functions) of arith.txi
Rik <rdrider0-list@yahoo.com>
parents:
9064
diff
changeset
|
48 @section Exponents and Logarithms |
6788 | 49 |
3321 | 50 @DOCSTRING(exp) |
3294 | 51 |
7638
2df457529cfa
implement expm1 and log1p functions
Jaroslav Hajek <highegg@gmail.com>
parents:
7018
diff
changeset
|
52 @DOCSTRING(expm1) |
2df457529cfa
implement expm1 and log1p functions
Jaroslav Hajek <highegg@gmail.com>
parents:
7018
diff
changeset
|
53 |
3321 | 54 @DOCSTRING(log) |
3294 | 55 |
7638
2df457529cfa
implement expm1 and log1p functions
Jaroslav Hajek <highegg@gmail.com>
parents:
7018
diff
changeset
|
56 @DOCSTRING(log1p) |
2df457529cfa
implement expm1 and log1p functions
Jaroslav Hajek <highegg@gmail.com>
parents:
7018
diff
changeset
|
57 |
3321 | 58 @DOCSTRING(log10) |
3294 | 59 |
3321 | 60 @DOCSTRING(log2) |
3294 | 61 |
3321 | 62 @DOCSTRING(nextpow2) |
3294 | 63 |
6550 | 64 @DOCSTRING(nthroot) |
65 | |
3321 | 66 @DOCSTRING(pow2) |
3294 | 67 |
7984
bbaa5d7d0143
Some documentation updates
David Bateman <dbateman@free.fr>
parents:
7638
diff
changeset
|
68 @DOCSTRING(reallog) |
bbaa5d7d0143
Some documentation updates
David Bateman <dbateman@free.fr>
parents:
7638
diff
changeset
|
69 |
bbaa5d7d0143
Some documentation updates
David Bateman <dbateman@free.fr>
parents:
7638
diff
changeset
|
70 @DOCSTRING(realpow) |
bbaa5d7d0143
Some documentation updates
David Bateman <dbateman@free.fr>
parents:
7638
diff
changeset
|
71 |
bbaa5d7d0143
Some documentation updates
David Bateman <dbateman@free.fr>
parents:
7638
diff
changeset
|
72 @DOCSTRING(realsqrt) |
bbaa5d7d0143
Some documentation updates
David Bateman <dbateman@free.fr>
parents:
7638
diff
changeset
|
73 |
3321 | 74 @DOCSTRING(sqrt) |
3294 | 75 |
4169 | 76 @node Complex Arithmetic |
3294 | 77 @section Complex Arithmetic |
78 | |
9154
761fc0d3d980
Update section 17.2 (Complex Arithmetic) of arith.txi
Rik <rdrider0-list@yahoo.com>
parents:
9141
diff
changeset
|
79 In the descriptions of the following functions, |
3294 | 80 @tex |
81 $z$ is the complex number $x + iy$, where $i$ is defined as | |
82 $\sqrt{-1}$. | |
83 @end tex | |
10668
72585f1ca7a2
Replace @ifinfo with @ifnottex.
Rik <octave@nomad.inbox5.com>
parents:
9209
diff
changeset
|
84 @ifnottex |
3294 | 85 @var{z} is the complex number @var{x} + @var{i}@var{y}, where @var{i} is |
86 defined as @code{sqrt (-1)}. | |
10668
72585f1ca7a2
Replace @ifinfo with @ifnottex.
Rik <octave@nomad.inbox5.com>
parents:
9209
diff
changeset
|
87 @end ifnottex |
3294 | 88 |
3321 | 89 @DOCSTRING(abs) |
3294 | 90 |
3321 | 91 @DOCSTRING(arg) |
3294 | 92 |
3321 | 93 @DOCSTRING(conj) |
3294 | 94 |
9141
c1fff751b5a8
Update section 17.1 (Utility Functions) of arith.txi
Rik <rdrider0-list@yahoo.com>
parents:
9064
diff
changeset
|
95 @DOCSTRING(cplxpair) |
c1fff751b5a8
Update section 17.1 (Utility Functions) of arith.txi
Rik <rdrider0-list@yahoo.com>
parents:
9064
diff
changeset
|
96 |
3321 | 97 @DOCSTRING(imag) |
3294 | 98 |
3321 | 99 @DOCSTRING(real) |
3294 | 100 |
4169 | 101 @node Trigonometry |
3294 | 102 @section Trigonometry |
103 | |
9155
ad20b967e1c9
Update section 17.3 (Trigonometry) of arith.txi
Rik <rdrider0-list@yahoo.com>
parents:
9154
diff
changeset
|
104 Octave provides the following trigonometric functions where angles are |
6939 | 105 specified in radians. To convert from degrees to radians multiply by |
3294 | 106 @tex |
107 $\pi/180$ | |
108 @end tex | |
9167
1231b1762a9a
Simplify TeXinfo and eliminate use of @iftex in arith.txi
Rik <rdrider0-list@yahoo.com>
parents:
9165
diff
changeset
|
109 @ifnottex |
3294 | 110 @code{pi/180} |
9167
1231b1762a9a
Simplify TeXinfo and eliminate use of @iftex in arith.txi
Rik <rdrider0-list@yahoo.com>
parents:
9165
diff
changeset
|
111 @end ifnottex |
9155
ad20b967e1c9
Update section 17.3 (Trigonometry) of arith.txi
Rik <rdrider0-list@yahoo.com>
parents:
9154
diff
changeset
|
112 (e.g., @code{sin (30 * pi/180)} returns the sine of 30 degrees). As |
ad20b967e1c9
Update section 17.3 (Trigonometry) of arith.txi
Rik <rdrider0-list@yahoo.com>
parents:
9154
diff
changeset
|
113 an alternative, Octave provides a number of trigonometric functions |
ad20b967e1c9
Update section 17.3 (Trigonometry) of arith.txi
Rik <rdrider0-list@yahoo.com>
parents:
9154
diff
changeset
|
114 which work directly on an argument specified in degrees. These functions |
ad20b967e1c9
Update section 17.3 (Trigonometry) of arith.txi
Rik <rdrider0-list@yahoo.com>
parents:
9154
diff
changeset
|
115 are named after the base trigonometric function with a @samp{d} suffix. For |
ad20b967e1c9
Update section 17.3 (Trigonometry) of arith.txi
Rik <rdrider0-list@yahoo.com>
parents:
9154
diff
changeset
|
116 example, @code{sin} expects an angle in radians while @code{sind} expects an |
ad20b967e1c9
Update section 17.3 (Trigonometry) of arith.txi
Rik <rdrider0-list@yahoo.com>
parents:
9154
diff
changeset
|
117 angle in degrees. |
3294 | 118 |
3321 | 119 @DOCSTRING(sin) |
120 @DOCSTRING(cos) | |
121 @DOCSTRING(tan) | |
122 @DOCSTRING(sec) | |
123 @DOCSTRING(csc) | |
124 @DOCSTRING(cot) | |
3294 | 125 |
3321 | 126 @DOCSTRING(asin) |
127 @DOCSTRING(acos) | |
128 @DOCSTRING(atan) | |
129 @DOCSTRING(asec) | |
130 @DOCSTRING(acsc) | |
131 @DOCSTRING(acot) | |
3294 | 132 |
3321 | 133 @DOCSTRING(sinh) |
134 @DOCSTRING(cosh) | |
135 @DOCSTRING(tanh) | |
136 @DOCSTRING(sech) | |
3428 | 137 @DOCSTRING(csch) |
3321 | 138 @DOCSTRING(coth) |
3294 | 139 |
3321 | 140 @DOCSTRING(asinh) |
141 @DOCSTRING(acosh) | |
142 @DOCSTRING(atanh) | |
143 @DOCSTRING(asech) | |
144 @DOCSTRING(acsch) | |
145 @DOCSTRING(acoth) | |
3294 | 146 |
9155
ad20b967e1c9
Update section 17.3 (Trigonometry) of arith.txi
Rik <rdrider0-list@yahoo.com>
parents:
9154
diff
changeset
|
147 @DOCSTRING(atan2) |
3294 | 148 |
9155
ad20b967e1c9
Update section 17.3 (Trigonometry) of arith.txi
Rik <rdrider0-list@yahoo.com>
parents:
9154
diff
changeset
|
149 Octave provides the following trigonometric functions where angles are |
ad20b967e1c9
Update section 17.3 (Trigonometry) of arith.txi
Rik <rdrider0-list@yahoo.com>
parents:
9154
diff
changeset
|
150 specified in degrees. These functions produce true zeros at the appropriate |
10791
3140cb7a05a1
Add spellchecker scripts for Octave and run spellcheck of documentation
Rik <octave@nomad.inbox5.com>
parents:
10668
diff
changeset
|
151 intervals rather than the small round-off error that occurs when using |
9155
ad20b967e1c9
Update section 17.3 (Trigonometry) of arith.txi
Rik <rdrider0-list@yahoo.com>
parents:
9154
diff
changeset
|
152 radians. For example: |
3294 | 153 @example |
154 @group | |
9155
ad20b967e1c9
Update section 17.3 (Trigonometry) of arith.txi
Rik <rdrider0-list@yahoo.com>
parents:
9154
diff
changeset
|
155 cosd (90) |
ad20b967e1c9
Update section 17.3 (Trigonometry) of arith.txi
Rik <rdrider0-list@yahoo.com>
parents:
9154
diff
changeset
|
156 @result{} 0 |
ad20b967e1c9
Update section 17.3 (Trigonometry) of arith.txi
Rik <rdrider0-list@yahoo.com>
parents:
9154
diff
changeset
|
157 cos (pi/2) |
ad20b967e1c9
Update section 17.3 (Trigonometry) of arith.txi
Rik <rdrider0-list@yahoo.com>
parents:
9154
diff
changeset
|
158 @result{} 6.1230e-17 |
3294 | 159 @end group |
160 @end example | |
161 | |
6502 | 162 @DOCSTRING(sind) |
163 @DOCSTRING(cosd) | |
164 @DOCSTRING(tand) | |
165 @DOCSTRING(secd) | |
166 @DOCSTRING(cscd) | |
167 @DOCSTRING(cotd) | |
168 | |
169 @DOCSTRING(asind) | |
170 @DOCSTRING(acosd) | |
171 @DOCSTRING(atand) | |
172 @DOCSTRING(asecd) | |
173 @DOCSTRING(acscd) | |
174 @DOCSTRING(acotd) | |
3294 | 175 |
4169 | 176 @node Sums and Products |
3294 | 177 @section Sums and Products |
178 | |
3321 | 179 @DOCSTRING(sum) |
3294 | 180 |
3321 | 181 @DOCSTRING(prod) |
3294 | 182 |
3321 | 183 @DOCSTRING(cumsum) |
3294 | 184 |
3321 | 185 @DOCSTRING(cumprod) |
3294 | 186 |
3321 | 187 @DOCSTRING(sumsq) |
3294 | 188 |
6770 | 189 @DOCSTRING(accumarray) |
190 | |
9141
c1fff751b5a8
Update section 17.1 (Utility Functions) of arith.txi
Rik <rdrider0-list@yahoo.com>
parents:
9064
diff
changeset
|
191 @node Utility Functions |
c1fff751b5a8
Update section 17.1 (Utility Functions) of arith.txi
Rik <rdrider0-list@yahoo.com>
parents:
9064
diff
changeset
|
192 @section Utility Functions |
c1fff751b5a8
Update section 17.1 (Utility Functions) of arith.txi
Rik <rdrider0-list@yahoo.com>
parents:
9064
diff
changeset
|
193 |
c1fff751b5a8
Update section 17.1 (Utility Functions) of arith.txi
Rik <rdrider0-list@yahoo.com>
parents:
9064
diff
changeset
|
194 @DOCSTRING(ceil) |
c1fff751b5a8
Update section 17.1 (Utility Functions) of arith.txi
Rik <rdrider0-list@yahoo.com>
parents:
9064
diff
changeset
|
195 |
9155
ad20b967e1c9
Update section 17.3 (Trigonometry) of arith.txi
Rik <rdrider0-list@yahoo.com>
parents:
9154
diff
changeset
|
196 @DOCSTRING(cross) |
ad20b967e1c9
Update section 17.3 (Trigonometry) of arith.txi
Rik <rdrider0-list@yahoo.com>
parents:
9154
diff
changeset
|
197 |
9141
c1fff751b5a8
Update section 17.1 (Utility Functions) of arith.txi
Rik <rdrider0-list@yahoo.com>
parents:
9064
diff
changeset
|
198 @DOCSTRING(del2) |
c1fff751b5a8
Update section 17.1 (Utility Functions) of arith.txi
Rik <rdrider0-list@yahoo.com>
parents:
9064
diff
changeset
|
199 |
c1fff751b5a8
Update section 17.1 (Utility Functions) of arith.txi
Rik <rdrider0-list@yahoo.com>
parents:
9064
diff
changeset
|
200 @DOCSTRING(factor) |
c1fff751b5a8
Update section 17.1 (Utility Functions) of arith.txi
Rik <rdrider0-list@yahoo.com>
parents:
9064
diff
changeset
|
201 |
c1fff751b5a8
Update section 17.1 (Utility Functions) of arith.txi
Rik <rdrider0-list@yahoo.com>
parents:
9064
diff
changeset
|
202 @DOCSTRING(factorial) |
c1fff751b5a8
Update section 17.1 (Utility Functions) of arith.txi
Rik <rdrider0-list@yahoo.com>
parents:
9064
diff
changeset
|
203 |
c1fff751b5a8
Update section 17.1 (Utility Functions) of arith.txi
Rik <rdrider0-list@yahoo.com>
parents:
9064
diff
changeset
|
204 @DOCSTRING(fix) |
c1fff751b5a8
Update section 17.1 (Utility Functions) of arith.txi
Rik <rdrider0-list@yahoo.com>
parents:
9064
diff
changeset
|
205 |
c1fff751b5a8
Update section 17.1 (Utility Functions) of arith.txi
Rik <rdrider0-list@yahoo.com>
parents:
9064
diff
changeset
|
206 @DOCSTRING(floor) |
c1fff751b5a8
Update section 17.1 (Utility Functions) of arith.txi
Rik <rdrider0-list@yahoo.com>
parents:
9064
diff
changeset
|
207 |
c1fff751b5a8
Update section 17.1 (Utility Functions) of arith.txi
Rik <rdrider0-list@yahoo.com>
parents:
9064
diff
changeset
|
208 @DOCSTRING(fmod) |
c1fff751b5a8
Update section 17.1 (Utility Functions) of arith.txi
Rik <rdrider0-list@yahoo.com>
parents:
9064
diff
changeset
|
209 |
c1fff751b5a8
Update section 17.1 (Utility Functions) of arith.txi
Rik <rdrider0-list@yahoo.com>
parents:
9064
diff
changeset
|
210 @DOCSTRING(gcd) |
c1fff751b5a8
Update section 17.1 (Utility Functions) of arith.txi
Rik <rdrider0-list@yahoo.com>
parents:
9064
diff
changeset
|
211 |
c1fff751b5a8
Update section 17.1 (Utility Functions) of arith.txi
Rik <rdrider0-list@yahoo.com>
parents:
9064
diff
changeset
|
212 @DOCSTRING(gradient) |
c1fff751b5a8
Update section 17.1 (Utility Functions) of arith.txi
Rik <rdrider0-list@yahoo.com>
parents:
9064
diff
changeset
|
213 |
c1fff751b5a8
Update section 17.1 (Utility Functions) of arith.txi
Rik <rdrider0-list@yahoo.com>
parents:
9064
diff
changeset
|
214 @DOCSTRING(hypot) |
c1fff751b5a8
Update section 17.1 (Utility Functions) of arith.txi
Rik <rdrider0-list@yahoo.com>
parents:
9064
diff
changeset
|
215 |
c1fff751b5a8
Update section 17.1 (Utility Functions) of arith.txi
Rik <rdrider0-list@yahoo.com>
parents:
9064
diff
changeset
|
216 @DOCSTRING(lcm) |
c1fff751b5a8
Update section 17.1 (Utility Functions) of arith.txi
Rik <rdrider0-list@yahoo.com>
parents:
9064
diff
changeset
|
217 |
9165
8c71a86c4bf4
Update section 17.5 (Utility Functions) of arith.txi
Rik <rdrider0-list@yahoo.com>
parents:
9155
diff
changeset
|
218 @DOCSTRING(list_primes) |
8c71a86c4bf4
Update section 17.5 (Utility Functions) of arith.txi
Rik <rdrider0-list@yahoo.com>
parents:
9155
diff
changeset
|
219 |
9141
c1fff751b5a8
Update section 17.1 (Utility Functions) of arith.txi
Rik <rdrider0-list@yahoo.com>
parents:
9064
diff
changeset
|
220 @DOCSTRING(max) |
c1fff751b5a8
Update section 17.1 (Utility Functions) of arith.txi
Rik <rdrider0-list@yahoo.com>
parents:
9064
diff
changeset
|
221 |
c1fff751b5a8
Update section 17.1 (Utility Functions) of arith.txi
Rik <rdrider0-list@yahoo.com>
parents:
9064
diff
changeset
|
222 @DOCSTRING(min) |
c1fff751b5a8
Update section 17.1 (Utility Functions) of arith.txi
Rik <rdrider0-list@yahoo.com>
parents:
9064
diff
changeset
|
223 |
c1fff751b5a8
Update section 17.1 (Utility Functions) of arith.txi
Rik <rdrider0-list@yahoo.com>
parents:
9064
diff
changeset
|
224 @DOCSTRING(cummax) |
c1fff751b5a8
Update section 17.1 (Utility Functions) of arith.txi
Rik <rdrider0-list@yahoo.com>
parents:
9064
diff
changeset
|
225 |
c1fff751b5a8
Update section 17.1 (Utility Functions) of arith.txi
Rik <rdrider0-list@yahoo.com>
parents:
9064
diff
changeset
|
226 @DOCSTRING(cummin) |
c1fff751b5a8
Update section 17.1 (Utility Functions) of arith.txi
Rik <rdrider0-list@yahoo.com>
parents:
9064
diff
changeset
|
227 |
c1fff751b5a8
Update section 17.1 (Utility Functions) of arith.txi
Rik <rdrider0-list@yahoo.com>
parents:
9064
diff
changeset
|
228 @DOCSTRING(mod) |
c1fff751b5a8
Update section 17.1 (Utility Functions) of arith.txi
Rik <rdrider0-list@yahoo.com>
parents:
9064
diff
changeset
|
229 |
c1fff751b5a8
Update section 17.1 (Utility Functions) of arith.txi
Rik <rdrider0-list@yahoo.com>
parents:
9064
diff
changeset
|
230 @DOCSTRING(primes) |
c1fff751b5a8
Update section 17.1 (Utility Functions) of arith.txi
Rik <rdrider0-list@yahoo.com>
parents:
9064
diff
changeset
|
231 |
c1fff751b5a8
Update section 17.1 (Utility Functions) of arith.txi
Rik <rdrider0-list@yahoo.com>
parents:
9064
diff
changeset
|
232 @DOCSTRING(rem) |
c1fff751b5a8
Update section 17.1 (Utility Functions) of arith.txi
Rik <rdrider0-list@yahoo.com>
parents:
9064
diff
changeset
|
233 |
c1fff751b5a8
Update section 17.1 (Utility Functions) of arith.txi
Rik <rdrider0-list@yahoo.com>
parents:
9064
diff
changeset
|
234 @DOCSTRING(round) |
c1fff751b5a8
Update section 17.1 (Utility Functions) of arith.txi
Rik <rdrider0-list@yahoo.com>
parents:
9064
diff
changeset
|
235 |
c1fff751b5a8
Update section 17.1 (Utility Functions) of arith.txi
Rik <rdrider0-list@yahoo.com>
parents:
9064
diff
changeset
|
236 @DOCSTRING(roundb) |
c1fff751b5a8
Update section 17.1 (Utility Functions) of arith.txi
Rik <rdrider0-list@yahoo.com>
parents:
9064
diff
changeset
|
237 |
c1fff751b5a8
Update section 17.1 (Utility Functions) of arith.txi
Rik <rdrider0-list@yahoo.com>
parents:
9064
diff
changeset
|
238 @DOCSTRING(sign) |
c1fff751b5a8
Update section 17.1 (Utility Functions) of arith.txi
Rik <rdrider0-list@yahoo.com>
parents:
9064
diff
changeset
|
239 |
4169 | 240 @node Special Functions |
3294 | 241 @section Special Functions |
242 | |
9155
ad20b967e1c9
Update section 17.3 (Trigonometry) of arith.txi
Rik <rdrider0-list@yahoo.com>
parents:
9154
diff
changeset
|
243 @DOCSTRING(airy) |
3459 | 244 |
9155
ad20b967e1c9
Update section 17.3 (Trigonometry) of arith.txi
Rik <rdrider0-list@yahoo.com>
parents:
9154
diff
changeset
|
245 @DOCSTRING(besselj) |
3294 | 246 |
3321 | 247 @DOCSTRING(beta) |
3294 | 248 |
3444 | 249 @DOCSTRING(betainc) |
3294 | 250 |
6502 | 251 @DOCSTRING(betaln) |
252 | |
3321 | 253 @DOCSTRING(bincoeff) |
3294 | 254 |
9155
ad20b967e1c9
Update section 17.3 (Trigonometry) of arith.txi
Rik <rdrider0-list@yahoo.com>
parents:
9154
diff
changeset
|
255 @DOCSTRING(commutation_matrix) |
ad20b967e1c9
Update section 17.3 (Trigonometry) of arith.txi
Rik <rdrider0-list@yahoo.com>
parents:
9154
diff
changeset
|
256 |
ad20b967e1c9
Update section 17.3 (Trigonometry) of arith.txi
Rik <rdrider0-list@yahoo.com>
parents:
9154
diff
changeset
|
257 @DOCSTRING(duplication_matrix) |
ad20b967e1c9
Update section 17.3 (Trigonometry) of arith.txi
Rik <rdrider0-list@yahoo.com>
parents:
9154
diff
changeset
|
258 |
3321 | 259 @DOCSTRING(erf) |
3294 | 260 |
3321 | 261 @DOCSTRING(erfc) |
3294 | 262 |
3321 | 263 @DOCSTRING(erfinv) |
3294 | 264 |
3321 | 265 @DOCSTRING(gamma) |
3294 | 266 |
3444 | 267 @DOCSTRING(gammainc) |
3294 | 268 |
6502 | 269 @DOCSTRING(legendre) |
270 | |
8286
6f2d95255911
fix @seealso references to point to existing anchors
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
7984
diff
changeset
|
271 @anchor{doc-gammaln} |
3321 | 272 @DOCSTRING(lgamma) |
273 | |
4169 | 274 @node Coordinate Transformations |
3803 | 275 @section Coordinate Transformations |
276 | |
277 @DOCSTRING(cart2pol) | |
278 | |
279 @DOCSTRING(pol2cart) | |
280 | |
281 @DOCSTRING(cart2sph) | |
282 | |
283 @DOCSTRING(sph2cart) | |
284 | |
4169 | 285 @node Mathematical Constants |
3294 | 286 @section Mathematical Constants |
287 | |
9155
ad20b967e1c9
Update section 17.3 (Trigonometry) of arith.txi
Rik <rdrider0-list@yahoo.com>
parents:
9154
diff
changeset
|
288 @DOCSTRING(e) |
ad20b967e1c9
Update section 17.3 (Trigonometry) of arith.txi
Rik <rdrider0-list@yahoo.com>
parents:
9154
diff
changeset
|
289 |
ad20b967e1c9
Update section 17.3 (Trigonometry) of arith.txi
Rik <rdrider0-list@yahoo.com>
parents:
9154
diff
changeset
|
290 @DOCSTRING(pi) |
ad20b967e1c9
Update section 17.3 (Trigonometry) of arith.txi
Rik <rdrider0-list@yahoo.com>
parents:
9154
diff
changeset
|
291 |
3321 | 292 @DOCSTRING(I) |
293 | |
294 @DOCSTRING(Inf) | |
3294 | 295 |
3321 | 296 @DOCSTRING(NaN) |
3294 | 297 |
3321 | 298 @DOCSTRING(eps) |
3294 | 299 |
3321 | 300 @DOCSTRING(realmax) |
3294 | 301 |
3321 | 302 @DOCSTRING(realmin) |