JLComplexFloatSpecialFunctions

jcfsf.spad line 1 [edit on github]

Special functions computed using JL's ecosystem.

acosd: JLComplexFloat -> JLComplexFloat

acosd(x) computes the inverse cosine of x, where output is in degrees.

acotd: JLComplexFloat -> JLComplexFloat

acotd(x) computes the inverse cotangent of x, where output is in degrees.

acscd: JLComplexFloat -> JLComplexFloat

acscd(x) computes the inverse cosecant of x, where output is in degrees.

asecd: JLComplexFloat -> JLComplexFloat

asecd(x) computes the inverse secant of x, where output is in degrees.

asind: JLComplexFloat -> JLComplexFloat

asind(x) computes the inverse sine of x, 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 of x, where output is in degrees.

cosc: JLComplexFloat -> JLComplexFloat

cosc(x) computes cos(pi*x)/x−sin(pi*x)/(pi*x^2) if x~=0, and 0 if x=0 i.e. the derivative of sinc(x).

cosd: JLComplexFloat -> JLComplexFloat

cosd(x) computes cosine of x, where x is in degrees.

cospi: JLComplexFloat -> JLComplexFloat

cospi(x) computes cos(pi*x) more accurately.

cotd: JLComplexFloat -> JLComplexFloat

cotd(x) computes cotangent of x, where x is in degrees.

cscd: JLComplexFloat -> JLComplexFloat

cscd(x) computes cosecant of x, where x is in degrees.

deg2Rad: JLComplexFloat -> JLComplexFloat

deg2rad(x) converts x to radian, where x is in degrees.

hypot: (JLComplexFloat, JLComplexFloat) -> JLComplexFloat

hypot(x,y) computes the hypotenuse avoiding overflow and underflow.

rad2Deg: JLComplexFloat -> JLComplexFloat

rad2deg(x) converts x to degrees, where x is in radians.

secd: JLComplexFloat -> JLComplexFloat

secd(x) computes secant of x, where x is in degrees.

sinc: JLComplexFloat -> JLComplexFloat

sinc(x) computes sin(pi*x)/(pi*x) if x~=0, and 1 if x=0.

sind: JLComplexFloat -> JLComplexFloat

sind(x) computes sine of x, where x is in degrees.

sinpi: JLComplexFloat -> JLComplexFloat

sinpi(x) computes sin(pi*x) more accurately.

tand: JLComplexFloat -> JLComplexFloat

tand(x) computes tangent of x, where x is in degrees.

tanpi: JLComplexFloat -> JLComplexFloat

tanpi(x) computes tan(pi*x) more accurately.