improve inverse trigonometric help files

This commit is contained in:
Landon Curt Noll
2023-09-11 15:34:12 -07:00
parent 81eb6eac11
commit 4c65986502
6 changed files with 46 additions and 2 deletions

View File

@@ -14,7 +14,13 @@ DESCRIPTION
Returns the inverse sine of x to a multiple of eps with error less in
absolute value than .75 * eps.
v = asin(x) is the number in [-pi/2, pi/2] for which sin(v) = x.
This function is sometimes called arcsin, is such that:
sin(asin(x)) = x
and such that:
asin(x) = acsc(1/x)
EXAMPLE
; print asin(.5, 1e-5), asin(.5, 1e-10), asin(.5, 1e-15), asin(.5, 1e-20)