summaryrefslogtreecommitdiff
path: root/lib/stdlib/doc/src/math.xml
blob: c0b0d60f61f8b6a1a1e9f4fa64d1bdf07a224b51 (plain)
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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE erlref SYSTEM "erlref.dtd">

<erlref>
  <header>
    <copyright>
      <year>1996</year>
      <year>2023</year>
      <holder>Ericsson AB, All Rights Reserved</holder>
    </copyright>
    <legalnotice>
  Licensed under the Apache License, Version 2.0 (the "License");
  you may not use this file except in compliance with the License.
  You may obtain a copy of the License at
 
      http://www.apache.org/licenses/LICENSE-2.0

  Unless required by applicable law or agreed to in writing, software
  distributed under the License is distributed on an "AS IS" BASIS,
  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  See the License for the specific language governing permissions 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>1997-01-15</date>
    <rev>B</rev>
    <file>math.xml</file>
  </header>
  <module since="">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 provided on all platforms. In particular,
        the <seemfa marker="#erf/1"><c>erf/1</c></seemfa> and
        <seemfa marker="#erfc/1"><c>erfc/1</c></seemfa> functions
        are not provided on Windows.</p>
    </note>
  </description>

  <funcs>
    <func>
      <name name="acos" arity="1" since=""/>
      <name name="acosh" arity="1" since=""/>
      <name name="asin" arity="1" since=""/>
      <name name="asinh" arity="1" since=""/>
      <name name="atan" arity="1" since=""/>
      <name name="atan2" arity="2" since=""/>
      <name name="atanh" arity="1" since=""/>
      <name name="ceil" arity="1" since="OTP 20.0"/>
      <name name="cos" arity="1" since=""/>
      <name name="cosh" arity="1" since=""/>
      <name name="exp" arity="1" since=""/>
      <name name="floor" arity="1" since="OTP 20.0"/>
      <name name="fmod" arity="2" since="OTP 20.0"/>
      <name name="log" arity="1" since=""/>
      <name name="log10" arity="1" since=""/>
      <name name="log2" arity="1" since="OTP 18.0"/>
      <name name="pow" arity="2" since=""/>
      <name name="sin" arity="1" since=""/>
      <name name="sinh" arity="1" since=""/>
      <name name="sqrt" arity="1" since=""/>
      <name name="tan" arity="1" since=""/>
      <name name="tanh" arity="1" since=""/>
      <fsummary>Diverse math functions.</fsummary>
      <type variable="X" name_i="6"/>
      <type variable="Y" name_i="6"/>
      <desc>
        <p>A collection of mathematical functions that return floats. Arguments
          are numbers.</p>
      </desc>
    </func>

    <func>
      <name name="erf" arity="1" since=""/>
      <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" since=""/>
      <fsummary>Another error function.</fsummary>
      <desc>
        <p><c>erfc(X)</c> returns <c>1.0</c> - <c>erf(X)</c>, computed by
          methods that avoid cancellation for large <c><anno>X</anno></c>.</p>
      </desc>
    </func>

    <func>
      <name name="pi" arity="0" since=""/>
      <fsummary>Ratio of the circumference of a circle to its diameter.</fsummary>
      <desc>
          <p>Ratio of the circumference of a circle to its diameter.</p>
          <p>Floating point approximation of mathematical constant pi.</p>
      </desc>
    </func>

    <func>
      <name name="tau" arity="0" since="OTP 26.0"/>
      <fsummary>Ratio of the circumference of a circle to its radius.</fsummary>
      <desc>
        <p>Ratio of the circumference of a circle to its radius.</p>
        <p>This constant is equivalent to a full turn when described in radians.</p>
        <p>The same as <c>2 * pi()</c>.</p>
      </desc>
    </func>

  </funcs>

  <section>
    <title>Limitations</title>
    <p>As these are the C library, the same limitations apply.</p>
  </section>
</erlref>