aboutsummaryrefslogtreecommitdiffstats
path: root/lib/stdlib/doc/src/math.xml
blob: 0219dcce10c5c6e16cf71fb6c36666401932935c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<?xml version="1.0" encoding="latin1" ?>
<!DOCTYPE erlref SYSTEM "erlref.dtd">

<erlref>
  <header>
    <copyright>
      <year>1996</year>
      <year>2012</year>
      <holder>Ericsson AB, All Rights Reserved</holder>
    </copyright>
    <legalnotice>
  The contents of this file are subject to the Erlang Public License,
  Version 1.1, (the "License"); you may not use this file except in
  compliance with the License. You should have received a copy of the
  Erlang Public License along with this software. If not, it can be
  retrieved online at http://www.erlang.org/.

  Software distributed under the License is distributed on an "AS IS"
  basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
  the License for the specific language governing rights and limitations
  under the License.

  The Initial Developer of the Original Code is Ericsson AB.
    </legalnotice>

    <title>math</title>
    <prepared>Joe Armstrong</prepared>
    <responsible>Bjarne D&auml;cker</responsible>
    <docno>1</docno>
    <approved>Bjarne D&auml;cker</approved>
    <checked></checked>
    <date>97-01-15</date>
    <rev>B</rev>
    <file>math.sgml</file>
  </header>
  <module>math</module>
  <modulesummary>Mathematical Functions</modulesummary>
  <description>
    <p>This module provides an interface to a number of mathematical
      functions.</p>
    <note>
      <p>Not all functions are implemented on all platforms. In particular,
        the <c>erf/1</c> and <c>erfc/1</c> functions are not implemented on Windows.</p>
    </note>
  </description>
  <funcs>
    <func>
      <name name="pi" arity="0"/>
      <fsummary>A useful number</fsummary>
      <desc>
        <p>A useful number.</p>
      </desc>
    </func>
    <func>
      <name name="sin" arity="1"/>
      <name name="cos" arity="1"/>
      <name name="tan" arity="1"/>
      <name name="asin" arity="1"/>
      <name name="acos" arity="1"/>
      <name name="atan" arity="1"/>
      <name name="atan2" arity="2"/>
      <name name="sinh" arity="1"/>
      <name name="cosh" arity="1"/>
      <name name="tanh" arity="1"/>
      <name name="asinh" arity="1"/>
      <name name="acosh" arity="1"/>
      <name name="atanh" arity="1"/>
      <name name="exp" arity="1"/>
      <name name="log" arity="1"/>
      <name name="log10" arity="1"/>
      <name name="pow" arity="2"/>
      <name name="sqrt" arity="1"/>
      <type variable="X" name_i="7"/>
      <type variable="Y" name_i="7"/>
      <fsummary>Diverse math functions</fsummary>
      <desc>
        <p>A collection of math functions which return floats. Arguments
          are numbers. </p>
      </desc>
    </func>
    <func>
      <name name="erf" arity="1"/>
      <fsummary>Error function.</fsummary>
      <desc>
        <p>Returns the error function of <c><anno>X</anno></c>, where</p>
        <pre>
erf(X) = 2/sqrt(pi)*integral from 0 to X of exp(-t*t) dt.        </pre>
      </desc>
    </func>
    <func>
      <name name="erfc" arity="1"/>
      <fsummary>Another error function</fsummary>
      <desc>
        <p><c>erfc(X)</c> returns  <c>1.0 - erf(X)</c>, computed  by
          methods that avoid cancellation for large <c><anno>X</anno></c>. </p>
      </desc>
    </func>
  </funcs>

  <section>
    <title>Bugs</title>
    <p>As these are the C library, the bugs are the same.</p>
  </section>
</erlref>