Skip to content

Commit 3f5ed3c

Browse files
update docstrings (#201)
* update docs for beta_inc * tidy up links for gamma_inc, beta_inc * links for bessel functions. small format for sinint, cosint * cross and external links for bessel, hankel, airy * small tidy ups in refs * \operatornane is bugging Travis? * Update src/bessel.jl Co-Authored-By: Simon Byrne <[email protected]> * Update src/bessel.jl Co-Authored-By: Simon Byrne <[email protected]> * Update src/bessel.jl Co-Authored-By: Simon Byrne <[email protected]> * Update src/bessel.jl Co-Authored-By: Simon Byrne <[email protected]> * Update src/bessel.jl Co-Authored-By: Simon Byrne <[email protected]> * Update src/bessel.jl Co-Authored-By: Simon Byrne <[email protected]> * Update src/bessel.jl Co-Authored-By: Simon Byrne <[email protected]> * Update src/bessel.jl Co-Authored-By: Simon Byrne <[email protected]> * Update src/bessel.jl Co-Authored-By: Simon Byrne <[email protected]> * Update src/bessel.jl Co-Authored-By: Simon Byrne <[email protected]> * add couple of equation links to DLMF * order of see also and links; ellipk/e clarifications * order of links/see also * range -> domain * DLMF links now in X.Y.Z form Co-authored-by: Simon Byrne <[email protected]>
1 parent 89805f3 commit 3f5ed3c

File tree

7 files changed

+48
-50
lines changed

7 files changed

+48
-50
lines changed

src/bessel.jl

+16-16
Original file line numberDiff line numberDiff line change
@@ -66,9 +66,9 @@ end
6666
6767
Airy function of the first kind ``\\operatorname{Ai}(x)``.
6868
69-
See also: [`airyaix`](@ref), [`airyaiprime`](@ref), [`airybi`](@ref)
70-
7169
External links: [DLMF](https://dlmf.nist.gov/9.2), [Wikipedia](https://en.wikipedia.org/wiki/Airy_function)
70+
71+
See also: [`airyaix`](@ref), [`airyaiprime`](@ref), [`airybi`](@ref)
7272
"""
7373
function airyai end
7474
airyai(z::Complex{Float64}) = _airy(z, Int32(0), Int32(1))
@@ -78,9 +78,9 @@ airyai(z::Complex{Float64}) = _airy(z, Int32(0), Int32(1))
7878
7979
Derivative of the Airy function of the first kind ``\\operatorname{Ai}'(x)``.
8080
81-
See also: [`airyaiprimex`](@ref), [`airyai`](@ref), [`airybi`](@ref)
82-
8381
External links: [DLMF](https://dlmf.nist.gov/9.2), [Wikipedia](https://en.wikipedia.org/wiki/Airy_function)
82+
83+
See also: [`airyaiprimex`](@ref), [`airyai`](@ref), [`airybi`](@ref)
8484
"""
8585
function airyaiprime end
8686
airyaiprime(z::Complex{Float64}) = _airy(z, Int32(1), Int32(1))
@@ -90,9 +90,9 @@ airyaiprime(z::Complex{Float64}) = _airy(z, Int32(1), Int32(1))
9090
9191
Airy function of the second kind ``\\operatorname{Bi}(x)``.
9292
93-
See also: [`airybix`](@ref), [`airybiprime`](@ref), [`airyai`](@ref)
94-
9593
External links: [DLMF](https://dlmf.nist.gov/9.2), [Wikipedia](https://en.wikipedia.org/wiki/Airy_function)
94+
95+
See also: [`airybix`](@ref), [`airybiprime`](@ref), [`airyai`](@ref)
9696
"""
9797
function airybi end
9898
airybi(z::Complex{Float64}) = _biry(z, Int32(0), Int32(1))
@@ -102,9 +102,9 @@ airybi(z::Complex{Float64}) = _biry(z, Int32(0), Int32(1))
102102
103103
Derivative of the Airy function of the second kind ``\\operatorname{Bi}'(x)``.
104104
105-
See also: [`airybiprimex`](@ref), [`airybi`](@ref), [`airyai`](@ref)
106-
107105
External links: [DLMF](https://dlmf.nist.gov/9.2), [Wikipedia](https://en.wikipedia.org/wiki/Airy_function)
106+
107+
See also: [`airybiprimex`](@ref), [`airybi`](@ref), [`airyai`](@ref)
108108
"""
109109
function airybiprime end
110110
airybiprime(z::Complex{Float64}) = _biry(z, Int32(1), Int32(1))
@@ -115,9 +115,9 @@ airybiprime(z::Complex{Float64}) = _biry(z, Int32(1), Int32(1))
115115
Scaled Airy function of the first kind ``\\operatorname{Ai}(x) e^{\\frac{2}{3} x
116116
\\sqrt{x}}``. Throws `DomainError` for negative `Real` arguments.
117117
118-
See also: [`airyai`](@ref), [`airyaiprime`](@ref), [`airybi`](@ref)
119-
120118
External links: [DLMF](https://dlmf.nist.gov/9.2), [Wikipedia](https://en.wikipedia.org/wiki/Airy_function)
119+
120+
See also: [`airyai`](@ref), [`airyaiprime`](@ref), [`airybi`](@ref)
121121
"""
122122
function airyaix end
123123
airyaix(z::Complex{Float64}) = _airy(z, Int32(0), Int32(2))
@@ -128,9 +128,9 @@ airyaix(z::Complex{Float64}) = _airy(z, Int32(0), Int32(2))
128128
Scaled derivative of the Airy function of the first kind ``\\operatorname{Ai}'(x)
129129
e^{\\frac{2}{3} x \\sqrt{x}}``. Throws `DomainError` for negative `Real` arguments.
130130
131-
See also: [`airyaiprime`](@ref), [`airyai`](@ref), [`airybi`](@ref)
132-
133131
External links: [DLMF](https://dlmf.nist.gov/9.2), [Wikipedia](https://en.wikipedia.org/wiki/Airy_function)
132+
133+
See also: [`airyaiprime`](@ref), [`airyai`](@ref), [`airybi`](@ref)
134134
"""
135135
function airyaiprimex end
136136
airyaiprimex(z::Complex{Float64}) = _airy(z, Int32(1), Int32(2))
@@ -140,9 +140,9 @@ airyaiprimex(z::Complex{Float64}) = _airy(z, Int32(1), Int32(2))
140140
141141
Scaled Airy function of the second kind ``\\operatorname{Bi}(x) e^{- \\left| \\operatorname{Re} \\left( \\frac{2}{3} x \\sqrt{x} \\right) \\right|}``.
142142
143-
See also: [`airybi`](@ref), [`airybiprime`](@ref), [`airyai`](@ref)
144-
145143
External links: [DLMF](https://dlmf.nist.gov/9.2), [Wikipedia](https://en.wikipedia.org/wiki/Airy_function)
144+
145+
See also: [`airybi`](@ref), [`airybiprime`](@ref), [`airyai`](@ref)
146146
"""
147147
function airybix end
148148
airybix(z::Complex{Float64}) = _biry(z, Int32(0), Int32(2))
@@ -152,9 +152,9 @@ airybix(z::Complex{Float64}) = _biry(z, Int32(0), Int32(2))
152152
153153
Scaled derivative of the Airy function of the second kind ``\\operatorname{Bi}'(x) e^{- \\left| \\operatorname{Re} \\left( \\frac{2}{3} x \\sqrt{x} \\right) \\right|}``.
154154
155-
See also: [`airybiprime`](@ref), [`airybi`](@ref), [`airyai`](@ref)
156-
157155
External links: [DLMF](https://dlmf.nist.gov/9.2), [Wikipedia](https://en.wikipedia.org/wiki/Airy_function)
156+
157+
See also: [`airybiprime`](@ref), [`airybi`](@ref), [`airyai`](@ref)
158158
"""
159159
function airybiprimex end
160160
airybiprimex(z::Complex{Float64}) = _biry(z, Int32(1), Int32(2))

src/beta_inc.jl

+9-9
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ end
175175
Compute ``I_{x}(a,b)`` using continued fraction expansion when `a,b > 1`.
176176
It is assumed that ``\\lambda = (a+b)*y - b``
177177
178-
External links: [DLMF](https://dlmf.nist.gov/8.17#E22), [Wikipedia](https://en.wikipedia.org/wiki/Beta_function#Incomplete_beta_function)
178+
External links: [DLMF](https://dlmf.nist.gov/8.17.22), [Wikipedia](https://en.wikipedia.org/wiki/Beta_function#Incomplete_beta_function)
179179
180180
See also: [`beta_inc`](@ref)
181181
@@ -241,7 +241,7 @@ end
241241
Compute ``I_{x}(a,b)`` using asymptotic expansion for `a,b >= 15`.
242242
It is assumed that ``\\lambda = (a+b)*y - b``.
243243
244-
External links: [DLMF](https://dlmf.nist.gov/8.17#E22), [Wikipedia](https://en.wikipedia.org/wiki/Beta_function#Incomplete_beta_function)
244+
External links: [DLMF](https://dlmf.nist.gov/8.17.22), [Wikipedia](https://en.wikipedia.org/wiki/Beta_function#Incomplete_beta_function)
245245
246246
See also: [`beta_inc`](@ref)
247247
@@ -340,7 +340,7 @@ end
340340
Evaluation of ``I_{x}(a,b)`` when `b < min(epps,epps*a)` and `x <= 0.5` using asymptotic expansion.
341341
It is assumed `a >= 15` and `b <= 1`, and epps is tolerance used.
342342
343-
External links: [DLMF](https://dlmf.nist.gov/8.17#E22), [Wikipedia](https://en.wikipedia.org/wiki/Beta_function#Incomplete_beta_function)
343+
External links: [DLMF](https://dlmf.nist.gov/8.17.22), [Wikipedia](https://en.wikipedia.org/wiki/Beta_function#Incomplete_beta_function)
344344
345345
See also: [`beta_inc`](@ref)
346346
"""
@@ -413,7 +413,7 @@ end
413413
414414
Variant of `BPSER(A,B,X,EPS)`.
415415
416-
External links: [DLMF](https://dlmf.nist.gov/8.17#E22), [Wikipedia](https://en.wikipedia.org/wiki/Beta_function#Incomplete_beta_function)
416+
External links: [DLMF](https://dlmf.nist.gov/8.17.22), [Wikipedia](https://en.wikipedia.org/wiki/Beta_function#Incomplete_beta_function)
417417
418418
See also: [`beta_inc`](@ref)
419419
@@ -455,7 +455,7 @@ end
455455
456456
Another variant of `BPSER(A,B,X,EPS)`.
457457
458-
External links: [DLMF](https://dlmf.nist.gov/8.17#E22), [Wikipedia](https://en.wikipedia.org/wiki/Beta_function#Incomplete_beta_function)
458+
External links: [DLMF](https://dlmf.nist.gov/8.17.22), [Wikipedia](https://en.wikipedia.org/wiki/Beta_function#Incomplete_beta_function)
459459
460460
See also: [`beta_inc`](@ref)
461461
@@ -495,7 +495,7 @@ Computes ``I_x(a,b)`` using power series :
495495
```math
496496
I_{x}(a,b) = G(a,b)x^{a}/a (1 + a\\sum_{j=1}^{\\infty}((1-b)(2-b)...(j-b)/j!(a+j)) x^{j})
497497
```
498-
External links: [DLMF](https://dlmf.nist.gov/8.17#E22), [Wikipedia](https://en.wikipedia.org/wiki/Beta_function#Incomplete_beta_function)
498+
External links: [DLMF](https://dlmf.nist.gov/8.17.22), [Wikipedia](https://en.wikipedia.org/wiki/Beta_function#Incomplete_beta_function)
499499
500500
See also: [`beta_inc`](@ref)
501501
@@ -592,9 +592,9 @@ end
592592
beta_inc_diff(a,b,x,y,n,epps)
593593
594594
Compute ``I_{x}(a,b) - I_{x}(a+n,b)`` where `n` is positive integer and epps is tolerance.
595-
A generalised version of [DLMF](https://dlmf.nist.gov/8.17#E20).
595+
A generalised version of [DLMF](https://dlmf.nist.gov/8.17.20).
596596
597-
External links: [DLMF](https://dlmf.nist.gov/8.17#E20), [Wikipedia](https://en.wikipedia.org/wiki/Beta_function#Incomplete_beta_function)
597+
External links: [DLMF](https://dlmf.nist.gov/8.17.20), [Wikipedia](https://en.wikipedia.org/wiki/Beta_function#Incomplete_beta_function)
598598
599599
See also: [`beta_inc`](@ref)
600600
"""
@@ -699,7 +699,7 @@ I_{x}(a,b) = \\frac{1}{B(a,b)} \\int_{0}^{x} t^{a-1}(1-t)^{b-1} dt,
699699
```
700700
where ``B(a,b) = \\Gamma(a)\\Gamma(b)/\\Gamma(a+b)``.
701701
702-
External links: [DLMF](https://dlmf.nist.gov/8.17#E1), [Wikipedia](https://en.wikipedia.org/wiki/Beta_function#Incomplete_beta_function)
702+
External links: [DLMF](https://dlmf.nist.gov/8.17.1), [Wikipedia](https://en.wikipedia.org/wiki/Beta_function#Incomplete_beta_function)
703703
704704
See also: [`beta_inc_inv(a,b,p,q)`](@ref SpecialFunctions.beta_inc_inv)
705705
"""

src/ellip.jl

+8-10
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,13 @@ Computes Complete Elliptic Integral of 1st kind ``K(m)`` for parameter ``m`` giv
1515
\quad \text{for} \quad m \in \left( -\infty, 1 \right] \, .
1616
```
1717
18-
External links: [DLMF](https://dlmf.nist.gov/19.2#E8),
19-
[Wikipedia](https://en.wikipedia.org/wiki/Elliptic_integral#Notational_variants).
18+
External links: [DLMF](https://dlmf.nist.gov/19.2.8), [Wikipedia](https://en.wikipedia.org/wiki/Elliptic_integral#Notational_variants).
2019
2120
See also: [`ellipe(m)`](@ref SpecialFunctions.ellipe).
2221
2322
# Arguments
24-
- `m`: parameter ``m`` is in relation to elliptic modulus ``k`` by ``k^2=m`` and modular
25-
angle ``\alpha`` by ``k=\sin \alpha``
23+
- `m`: parameter ``m``, restricted to the domain ``(-\infty,1]``, is related to the elliptic modulus ``k`` by ``k^2=m`` and to the modular
24+
angle ``\alpha`` by ``k=\sin \alpha``.
2625
2726
# Implementation
2827
Using piecewise approximation polynomial as given in
@@ -38,7 +37,7 @@ For ``m<0``, followed by
3837
> Journal of Computational and Applied Mathematics. 282.
3938
> DOI 10.13140/2.1.1946.6245.,
4039
> <https://www.researchgate.net/publication/267330394>
41-
Also suggested in this paper that we should consider domain only from ``(-\infty,1]``.
40+
As suggested in this paper, the domain is restricted to ``(-\infty,1]``.
4241
"""
4342
function ellipk(m::Float64)
4443
flag_is_m_neg = false
@@ -191,14 +190,13 @@ Computes Complete Elliptic Integral of 2nd kind ``E(m)`` for parameter ``m`` giv
191190
\quad \text{for} \quad m \in \left( -\infty, 1 \right] \, .
192191
```
193192
194-
External links: [DLMF](https://dlmf.nist.gov/19.2#E8),
195-
[Wikipedia](https://en.wikipedia.org/wiki/Elliptic_integral#Complete_elliptic_integral_of_the_second_kind).
193+
External links: [DLMF](https://dlmf.nist.gov/19.2.8), [Wikipedia](https://en.wikipedia.org/wiki/Elliptic_integral#Complete_elliptic_integral_of_the_second_kind).
196194
197195
See also: [`ellipk(m)`](@ref SpecialFunctions.ellipk).
198196
199197
# Arguments
200-
- `m`: parameter ``m`` is in relation to elliptic modulus ``k`` by ``k^2=m`` and modular
201-
angle ``\alpha`` by ``k=\sin \alpha``
198+
- `m`: parameter ``m``, restricted to the domain ``(-\infty,1]``, is related to the elliptic modulus ``k`` by ``k^2=m`` and to the modular
199+
angle ``\alpha`` by ``k=\sin \alpha``.
202200
203201
# Implementation
204202
Using piecewise approximation polynomial as given in
@@ -214,7 +212,7 @@ For ``m<0``, followed by
214212
> Journal of Computational and Applied Mathematics. 282.
215213
> DOI 10.13140/2.1.1946.6245.,
216214
> <https://www.researchgate.net/publication/267330394>
217-
Also suggested in this paper that we should consider domain only from ``(-\infty,1]``.
215+
As suggested in this paper, the domain is restricted to ``(-\infty,1]``.
218216
"""
219217
function ellipe(m::Float64)
220218
flag_is_m_neg = false

src/erf.jl

+4-4
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ Compute the error function of ``x``, defined by
5151
\quad \text{for} \quad x \in \mathbb{C} \, .
5252
```
5353
54-
External links: [DLMF](https://dlmf.nist.gov/7.2.E1), [Wikipedia](https://en.wikipedia.org/wiki/Error_function).
54+
External links: [DLMF](https://dlmf.nist.gov/7.2.1), [Wikipedia](https://en.wikipedia.org/wiki/Error_function).
5555
5656
See also: [`erfc(x)`](@ref SpecialFunctions.erfc), [`erfcx(x)`](@ref SpecialFunctions.erfcx),
5757
[`erfi(x)`](@ref SpecialFunctions.erfi), [`dawson(x)`](@ref SpecialFunctions.dawson),
@@ -78,7 +78,7 @@ Compute the complementary error function of ``x``, defined by
7878
7979
This is the accurate version of `1-erf(x)` for large ``x``.
8080
81-
External links: [DLMF](https://dlmf.nist.gov/7.2.E2),
81+
External links: [DLMF](https://dlmf.nist.gov/7.2.2),
8282
[Wikipedia](https://en.wikipedia.org/wiki/Error_function#Complementary_error_function).
8383
8484
See also: [`erf(x)`](@ref SpecialFunctions.erf).
@@ -104,7 +104,7 @@ Compute the scaled complementary error function of ``x``, defined by
104104
This is the accurate version of ``e^{x^2} \operatorname{erfc}(x)`` for large ``x``.
105105
Note also that ``\operatorname{erfcx}(-ix)`` computes the Faddeeva function `w(x)`.
106106
107-
External links: [DLMF](https://dlmf.nist.gov/7.2.E3),
107+
External links: [DLMF](https://dlmf.nist.gov/7.2.3),
108108
[Wikipedia](https://en.wikipedia.org/wiki/Error_function#Complementary_error_function).
109109
110110
See also: [`erfc(x)`](@ref SpecialFunctions.erfc).
@@ -153,7 +153,7 @@ Compute the Dawson function (scaled imaginary error function) of ``x``, defined
153153
This is the accurate version of ``\frac{\sqrt{\pi}}{2} e^{-x^2} \operatorname{erfi}(x)``
154154
for large ``x``.
155155
156-
External links: [DLMF](https://dlmf.nist.gov/7.2.E5),
156+
External links: [DLMF](https://dlmf.nist.gov/7.2.5),
157157
[Wikipedia](https://en.wikipedia.org/wiki/Dawson_function).
158158
159159
See also: [`erfi(x)`](@ref SpecialFunctions.erfi).

src/gamma.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -603,7 +603,7 @@ Compute the gamma function for complex ``z``, defined by
603603
and by analytic continuation in the whole complex plane.
604604
605605
External links:
606-
[DLMF](https://dlmf.nist.gov/5.2.E1),
606+
[DLMF](https://dlmf.nist.gov/5.2.1),
607607
[Wikipedia](https://en.wikipedia.org/wiki/Gamma_function).
608608
609609
See also: [`loggamma(z)`](@ref SpecialFunctions.loggamma).

src/gamma_inc.jl

+8-8
Original file line numberDiff line numberDiff line change
@@ -358,7 +358,7 @@ R(a,x) * \\frac{1}{1-\\frac{z}{a+1+\\frac{z}{a+2-\\frac{(a+1)z}{a+3+\\frac{2z}{a
358358
```
359359
Used when `1 <= a <= BIG` and `x < x0`.
360360
361-
External links: [DLMF](https://dlmf.nist.gov/8.9#E2)
361+
External links: [DLMF](https://dlmf.nist.gov/8.9.2)
362362
363363
See also: [`gamma_inc(a,x,ind)`](@ref SpecialFunctions.gamma_inc)
364364
"""
@@ -397,7 +397,7 @@ R(a,x)/a * (1 + \\sum_{n=1}^{\\infty} x^{n}/((a+1)(a+2)...(a+n)))
397397
```
398398
Used when `1 <= a <= BIG` and `x <= max{a, ln 10}`.
399399
400-
External links: [DLMF](https://dlmf.nist.gov/8.11#E2)
400+
External links: [DLMF](https://dlmf.nist.gov/8.11.2)
401401
402402
See also: [`gamma_inc(a,x,ind)`](@ref SpecialFunctions.gamma_inc)
403403
"""
@@ -447,7 +447,7 @@ R(a,x)/a * (1 + \\sum_{n=1}^{N-1}(a_{n}/x^{n} + \\Theta _{n}a_{n}/x^{n}))
447447
```
448448
where `R(a,x) = rgammax(a,x)`. Used when `1 <= a <= BIG` and `x >= x0`.
449449
450-
External links: [DLMF](https://dlmf.nist.gov/8.11#E2)
450+
External links: [DLMF](https://dlmf.nist.gov/8.11.2)
451451
452452
See also: [`gamma_inc(a,x,ind)`](@ref SpecialFunctions.gamma_inc)
453453
"""
@@ -547,7 +547,7 @@ T(a,\\lambda) = \\sum_{0}^{N} c_{k}(z)a^{-k}
547547
This is a higher accuracy approximation of Temme expansion, which deals with the region near `a ≈ x` with `a` large.
548548
Refer Appendix F in the paper for the extensive set of coefficients calculated using Brent's multiple precision arithmetic(set at 50 digits) in BRENT, R. P. A FORTRAN multiple-precision arithmetic package, ACM Trans. Math. Softw. 4(1978), 57-70 .
549549
550-
External links: [DLMF](https://dlmf.nist.gov/8.12#E8)
550+
External links: [DLMF](https://dlmf.nist.gov/8.12.8)
551551
552552
See also: [`gamma_inc(a,x,ind)`](@ref SpecialFunctions.gamma_inc)
553553
"""
@@ -608,7 +608,7 @@ T(a,\\lambda) = \\sum_{0}^{N} c_{k}(z)a^{-k}
608608
```
609609
This mainly solves the problem near the region when `a ≈ x` with a large, and is a lower accuracy version of the minimax approximation.
610610
611-
External links: [DLMF](https://dlmf.nist.gov/8.12#E8)
611+
External links: [DLMF](https://dlmf.nist.gov/8.12.8)
612612
613613
See also: [`gamma_inc(a,x,ind)`](@ref SpecialFunctions.gamma_inc)
614614
"""
@@ -642,7 +642,7 @@ E(y) = 1/2 - (1 - y/3)*(\\sqrt(y/\\pi))
642642
```
643643
Used instead of it's previous function when ``\\sigma <= e_{0}/\\sqrt{a}``.
644644
645-
External links: [DLMF](https://dlmf.nist.gov/8.12#E8)
645+
External links: [DLMF](https://dlmf.nist.gov/8.12.8)
646646
"""
647647
function gamma_inc_temme_1(a::Float64, x::Float64, z::Float64, ind::Integer)
648648
iop = ind + 1
@@ -832,7 +832,7 @@ Q(x,a)=\\frac{1}{\\Gamma (a)} \\int_{x}^{\\infty} e^{-t}t^{a-1} dt.
832832
833833
`IND ∈ [0,1,2]` sets accuracy: `IND=0` means 14 significant digits accuracy, `IND=1` means 6 significant digit, and `IND=2` means only 3 digit accuracy.
834834
835-
External links: [DLMF](https://dlmf.nist.gov/8.2#E4), [Wikipedia](https://en.wikipedia.org/wiki/Incomplete_gamma_function)
835+
External links: [DLMF](https://dlmf.nist.gov/8.2.4), [Wikipedia](https://en.wikipedia.org/wiki/Incomplete_gamma_function)
836836
837837
See also [`gamma(z)`](@ref SpecialFunctions.gamma), [`gamma_inc_inv(a,p,q)`](@ref SpecialFunctions.gamma_inc_inv)
838838
"""
@@ -954,7 +954,7 @@ gamma_inc(a::AbstractFloat,x::AbstractFloat,ind::Integer) = throw(MethodError(ga
954954
955955
Inverts the `gamma_inc(a,x)` function, by computing `x` given `a`,`p`,`q` in ``P(a,x)=p`` and ``Q(a,x)=q``.
956956
957-
External links: [DLMF](https://dlmf.nist.gov/8.2#E4), [Wikipedia](https://en.wikipedia.org/wiki/Incomplete_gamma_function)
957+
External links: [DLMF](https://dlmf.nist.gov/8.2.4), [Wikipedia](https://en.wikipedia.org/wiki/Incomplete_gamma_function)
958958
959959
See also: [`gamma_inc(a,x,ind)`](@ref SpecialFunctions.gamma_inc).
960960
"""

src/sincosint.jl

+2-2
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ Compute the sine integral function of ``x``, defined by
238238
x \in \mathbb{R} \,.
239239
```
240240
241-
External links: [DLMF](https://dlmf.nist.gov/6.2.E9),
241+
External links: [DLMF](https://dlmf.nist.gov/6.2.9),
242242
[Wikipedia](https://en.wikipedia.org/wiki/Trigonometric_integral#Sine_integral).
243243
244244
See also: [`cosint(x)`](@ref SpecialFunctions.cosint).
@@ -270,7 +270,7 @@ x > 0 \,,
270270
```
271271
where ``\gamma`` is the Euler-Mascheroni constant.
272272
273-
External links: [DLMF](https://dlmf.nist.gov/6.2.E13),
273+
External links: [DLMF](https://dlmf.nist.gov/6.2.13),
274274
[Wikipedia](https://en.wikipedia.org/wiki/Trigonometric_integral#Cosine_integral).
275275
276276
See also: [`sinint(x)`](@ref SpecialFunctions.sinint).

0 commit comments

Comments
 (0)