File: erf-doc.m2

package info (click to toggle)
macaulay2 1.21%2Bds-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 133,096 kB
  • sloc: cpp: 110,377; ansic: 16,306; javascript: 4,193; makefile: 3,821; sh: 3,580; lisp: 764; yacc: 590; xml: 177; python: 140; perl: 114; lex: 65; awk: 3
file content (65 lines) | stat: -rw-r--r-- 1,029 bytes parent folder | download
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
doc ///
  Key
    erf
  Headline
    error function
  Usage
    erf x
  Inputs
    x:RR
  Outputs
    :RR -- the error function of @TT "x"@
  Description
    Text
      The @wikipedia "error function"@
      \(\operatorname{erf} x = \frac{2}{\sqrt\pi}\int_0^x e^{-t^2}\,dt\).
    Example
      erf 2
  SeeAlso
    erfc
    inverseErf
///

doc ///
  Key
    erfc
  Headline
    complementary error function
  Usage
    erfc x
  Inputs
    x:RR
  Outputs
    :RR -- the complementary error function of @TT "x"@
  Description
    Text
      The complementary @wikipedia "error function"@
      \(\operatorname{erfc} x = \frac{2}{\sqrt\pi}\int_x^\infty e^{-t^2}\,dt\).
    Example
      erfc 2
  SeeAlso
    erf
    inverseErf
///

doc ///
  Key
    inverseErf
  Headline
    inverse error function
  Usage
    inverseErf y
  Inputs
    y:RR
  Outputs
    :RR -- the inverse error function of @TT "y"@
  Description
    Text
      The inverse of @TO "erf"@.
    Example
      erf 2
      inverseErf oo
  SeeAlso
    erf
    erfc
///