JLComplexFloatSpecialFunctions¶
jcfsf.spad line 1 [edit on github]
Special functions computed using Julia'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=0i.e. the derivative of sinc(x).
- cosd: JLComplexFloat -> JLComplexFloat
cosd(x)computes cosine ofx, wherexis in degrees.
- cospi: JLComplexFloat -> JLComplexFloat
cospi(x)computes cos(pi*x) more accurately.
- cotd: JLComplexFloat -> JLComplexFloat
cotd(x)computes cotangent ofx, wherexis in degrees.
- cscd: JLComplexFloat -> JLComplexFloat
cscd(x)computes cosecant ofx, wherexis in degrees.
- deg2Rad: JLComplexFloat -> JLComplexFloat
deg2Rad(x)convertsxto radian, wherexis in degrees.
- hypot: (JLComplexFloat, JLComplexFloat) -> JLComplexFloat
hypot(x,y)computes the hypotenuse avoiding overflow and underflow.
- rad2Deg: JLComplexFloat -> JLComplexFloat
rad2Deg(x)convertsxto degrees, wherexis in radians.
- secd: JLComplexFloat -> JLComplexFloat
secd(x)computes secant ofx, wherexis 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, wherexis in degrees.
- sinpi: JLComplexFloat -> JLComplexFloat
sinpi(x)computes sin(pi*x) more accurately.
- tand: JLComplexFloat -> JLComplexFloat
tand(x)computes tangent ofx, wherexis in degrees.
- tanpi: JLComplexFloat -> JLComplexFloat
tanpi(x)computes tan(pi*x) more accurately.