Skip to content

Commit bf498b9

Browse files
committed
add specialfunctions
1 parent cd18c76 commit bf498b9

File tree

1 file changed

+19
-3
lines changed

1 file changed

+19
-3
lines changed

src/methods.jl

Lines changed: 19 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,22 @@
1-
const monadic = [deg2rad, rad2deg, transpose, -, conj, asind, log1p, acsch, acos, asec, acosh, acsc, cscd, log, tand, log10, csch, asinh, abs2, cosh, sin, cos, atan, cospi, cbrt, acosd, acoth, acotd, asecd, exp, acot, sqrt, sind, sinpi, asech, log2, tan, exp10, sech, coth, asin, cotd, cosd, sinh, abs, csc, tanh, secd, atand, sec, acscd, cot, exp2, expm1, atanh, real]
2-
3-
const diadic = [+, -, max, min, *, /, \, hypot, atan, mod, rem, ^, copysign]
1+
import SpecialFunctions: gamma, loggamma, erf, erfc, erfcinv, erfi, erfcx,
2+
dawson, digamma, trigamma, invdigamma, polygamma,
3+
airyai, airyaiprime, airybi, airybiprime, besselj0,
4+
besselj1, bessely0, bessely1, besselj, bessely, besseli,
5+
besselk, hankelh1, hankelh2, polygamma, beta, logbeta
6+
7+
const monadic = [deg2rad, rad2deg, transpose, -, conj, asind, log1p, acsch,
8+
acos, asec, acosh, acsc, cscd, log, tand, log10, csch, asinh,
9+
abs2, cosh, sin, cos, atan, cospi, cbrt, acosd, acoth, acotd,
10+
asecd, exp, acot, sqrt, sind, sinpi, asech, log2, tan, exp10,
11+
sech, coth, asin, cotd, cosd, sinh, abs, csc, tanh, secd,
12+
atand, sec, acscd, cot, exp2, expm1, atanh, real, gamma,
13+
loggamma, erf, erfc, erfcinv, erfi, erfcx, dawson, digamma,
14+
trigamma, invdigamma, polygamma, airyai, airyaiprime, airybi,
15+
airybiprime, besselj0, besselj1, bessely0, bessely1]
16+
17+
const diadic = [+, -, max, min, *, /, \, hypot, atan, mod, rem, ^, copysign,
18+
besselj, bessely, besseli, besselk, hankelh1, hankelh2,
19+
polygamma, beta, logbeta]
420

521
const previously_declared_for = Set([])
622

0 commit comments

Comments
 (0)