JLComplexFloatSpecialFunctions¶
jcfsf.spad line 1 [edit on github]
Special functions computed using JL
's
ecosystem.
- acosd: JLComplexFloat -> JLComplexFloat
acosd(x)
computes the inverse cosine ofx
, where output is in degrees.
- acotd: JLComplexFloat -> JLComplexFloat
acotd(x)
computes the inverse cotangent ofx
, where output is in degrees.
- acscd: JLComplexFloat -> JLComplexFloat
acscd(x)
computes the inverse cosecant ofx
, where output is in degrees.
- asecd: JLComplexFloat -> JLComplexFloat
asecd(x)
computes the inverse secant ofx
, where output is in degrees.
- asind: JLComplexFloat -> JLComplexFloat
asind(x)
computes the inverse sine ofx
, where output is in degrees.
- atand: (JLComplexFloat, JLComplexFloat) -> JLComplexFloat
atand(x, y)
computes the inverse tangent of x/y, where output is in degrees.
- atand: JLComplexFloat -> JLComplexFloat
atand(x)
computes the inverse tangent ofx
, where output is in degrees.
- cosc: JLComplexFloat -> JLComplexFloat
cosc(x)
computes cos(pi*x)/x−sin(pi*x)/(pi*x^2
) ifx~=0
, and 0 ifx=0
i.e. the derivative of sinc(x
).
- cosd: JLComplexFloat -> JLComplexFloat
cosd(x)
computes cosine ofx
, wherex
is in degrees.
- cospi: JLComplexFloat -> JLComplexFloat
cospi(x)
computes cos(pi*x) more accurately.
- cotd: JLComplexFloat -> JLComplexFloat
cotd(x)
computes cotangent ofx
, wherex
is in degrees.
- cscd: JLComplexFloat -> JLComplexFloat
cscd(x)
computes cosecant ofx
, wherex
is in degrees.
- deg2Rad: JLComplexFloat -> JLComplexFloat
deg2rad(
x
) convertsx
to radian, wherex
is in degrees.
- hypot: (JLComplexFloat, JLComplexFloat) -> JLComplexFloat
hypot(x,y)
computes the hypotenuse avoiding overflow and underflow.
- rad2Deg: JLComplexFloat -> JLComplexFloat
rad2deg(
x
) convertsx
to degrees, wherex
is in radians.
- secd: JLComplexFloat -> JLComplexFloat
secd(x)
computes secant ofx
, wherex
is in degrees.
- sinc: JLComplexFloat -> JLComplexFloat
sinc(x)
computes sin(pi*x)/(pi*x) ifx~=0
, and 1 ifx=0
.
- sind: JLComplexFloat -> JLComplexFloat
sind(x)
computes sine ofx
, wherex
is in degrees.
- sinpi: JLComplexFloat -> JLComplexFloat
sinpi(x)
computes sin(pi*x) more accurately.
- tand: JLComplexFloat -> JLComplexFloat
tand(x)
computes tangent ofx
, wherex
is in degrees.
- tanpi: JLComplexFloat -> JLComplexFloat
tanpi(x)
computes tan(pi*x) more accurately.