reference/math/book.xml
19e8122137a1d42ed60f17fe2c0c2b69b0b2d16b
...
...
@@ -1,9 +1,8 @@
1
1
<?xml version="1.0" encoding="utf-8"?>
2
2
<!-- $Revision$ -->
3
-
<!-- Purpose: mathcrypto.math -->
4
-
<!-- Membership: core -->
5
3
6
4
<book xml:id="book.math" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
5
+
<?phpdoc extension-membership="core" ?>
7
6
<title>Mathematical Functions</title>
8
7
<titleabbrev>Math</titleabbrev>
9
8
...
...
@@ -12,16 +11,28 @@
12
11
&reftitle.intro;
13
12
<para>
14
13
These math functions will only handle values within the range of
15
-
the <type>integer</type> and <type>float</type> types on your computer
16
-
(this corresponds currently to the C types long resp. double).
17
-
If you need to handle bigger numbers, take a look at the <link
18
-
linkend="book.bc">arbitrary precision math functions</link>.
14
+
the <type>int</type> and <type>float</type> types.
15
+
To handle larger numbers, take a look at the
16
+
<link linkend="book.bc">arbitrary precision math</link> or
17
+
<link linkend="book.gmp">GNU Multiple Precision functions</link> functions.
19
18
</para>
20
-
<simpara>
21
-
See also the manual page on
22
-
<link linkend="language.operators.arithmetic">arithmetic
23
-
operators</link>.
24
-
</simpara>
19
+

20
+
<section>
21
+
&reftitle.seealso;
22
+
<para>
23
+
<simplelist>
24
+
<member>
25
+
<link linkend="language.operators.arithmetic">arithmetic operators</link>
26
+
</member>
27
+
<member>
28
+
<link linkend="book.bc">Arbitrary precision math functions</link>
29
+
</member>
30
+
<member>
31
+
<link linkend="book.gmp">GNU Multiple Precision functions</link>
32
+
</member>
33
+
</simplelist>
34
+
</para>
35
+
</section>
25
36
</preface>
26
37
<!-- }}} -->
27
38
28
39