sttf.spad line 1 [edit on github]
StreamTranscendentalFunctions implements transcendental functions on Taylor series, where a Taylor series is represented by a stream of its coefficients.
st1 ^ st2
computes the power of a power series st1
by another power series st2
.
acos(st)
computes arccosine of a power series st
.
acosh(st)
computes the inverse hyperbolic cosine of a power series st
.
acot(st)
computes arccotangent of a power series st
.
acoth(st)
computes the inverse hyperbolic cotangent of a power series st
.
acsc(st)
computes arccosecant of a power series st
.
acsch(st)
computes the inverse hyperbolic cosecant of a power series st
.
asec(st)
computes arcsecant of a power series st
.
asech(st)
computes the inverse hyperbolic secant of a power series st
.
asin(st)
computes arcsine of a power series st
.
asinh(st)
computes the inverse hyperbolic sine of a power series st
.
atan(st)
computes arctangent of a power series st
.
atanh(st)
computes the inverse hyperbolic tangent of a power series st
.
cos(st)
computes cosine of a power series st
.
cosh(st)
computes the hyperbolic cosine of a power series st
.
cot(st)
computes cotangent of a power series st
.
coth(st)
computes the hyperbolic cotangent of a power series st
.
csc(st)
computes cosecant of a power series st
.
csch(st)
computes the hyperbolic cosecant of a power series st
.
exp(st)
computes the exponential of a power series st
.
log(st)
computes the log of a power series.
sec(st)
computes secant of a power series st
.
sech(st)
computes the hyperbolic secant of a power series st
.
sin(st)
computes sine of a power series st
.
sincos(st)
returns a record containing the sine and cosine of a power series st
.
sinh(st)
computes the hyperbolic sine of a power series st
.
sinhcosh(st)
returns a record containing the hyperbolic sine and cosine of a power series st
.
tan(st)
computes tangent of a power series st
.
tanh(st)
computes the hyperbolic tangent of a power series st
.