ptranfn.spad line 1 [edit on github]
This is the description of any package which provides partial functions on a domain belonging to TranscendentalFunctionCategory.
acosIfCan(z)
returns acos(z
) if possible, and "failed" otherwise.
acoshIfCan(z)
returns acosh(z
) if possible, and "failed" otherwise.
acotIfCan(z)
returns acot(z
) if possible, and "failed" otherwise.
acothIfCan(z)
returns acoth(z
) if possible, and "failed" otherwise.
acscIfCan(z)
returns acsc(z
) if possible, and "failed" otherwise.
acschIfCan(z)
returns acsch(z
) if possible, and "failed" otherwise.
asecIfCan(z)
returns asec(z
) if possible, and "failed" otherwise.
asechIfCan(z)
returns asech(z
) if possible, and "failed" otherwise.
asinIfCan(z)
returns asin(z
) if possible, and "failed" otherwise.
asinhIfCan(z)
returns asinh(z
) if possible, and "failed" otherwise.
atanIfCan(z)
returns atan(z
) if possible, and "failed" otherwise.
atanhIfCan(z)
returns atanh(z
) if possible, and "failed" otherwise.
cosIfCan(z)
returns cos(z
) if possible, and "failed" otherwise.
coshIfCan(z)
returns cosh(z
) if possible, and "failed" otherwise.
cotIfCan(z)
returns cot(z
) if possible, and "failed" otherwise.
cothIfCan(z)
returns coth(z
) if possible, and "failed" otherwise.
cscIfCan(z)
returns csc
(z
) if possible, and "failed" otherwise.
cschIfCan(z)
returns csch(z
) if possible, and "failed" otherwise.
expIfCan(z)
returns exp(z
) if possible, and "failed" otherwise.
logIfCan(z)
returns log(z
) if possible, and "failed" otherwise.
nthRootIfCan(z, n)
returns the n
th root of z
if possible, and "failed" otherwise.
secIfCan(z)
returns sec(z
) if possible, and "failed" otherwise.
sechIfCan(z)
returns sech(z
) if possible, and "failed" otherwise.
sinIfCan(z)
returns sin(z
) if possible, and "failed" otherwise.
sinhIfCan(z)
returns sinh(z
) if possible, and "failed" otherwise.
tanIfCan(z)
returns tan(z
) if possible, and "failed" otherwise.
tanhIfCan(z)
returns tanh(z
) if possible, and "failed" otherwise.