Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update acosh documentation #572

Merged
merged 1 commit into from
Sep 9, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 9 additions & 8 deletions docs/2-references/libm/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -1587,14 +1587,15 @@ Link with `-lsleef`.

#### Description

These functions evaluate the inverse hyperbolic cosine function of a value in
a. The error bound of the returned value is 1.0 ULP if a is in [-1.34e+154,
1.34e+154] for the double-precision function or 1.001 ULP if a is in
[-1.84e+19, 1.84e+19] for the single-precision function . If a is a finite
value out of this range, infinity with a correct sign or a correct value with
1.0 ULP error bound is returned. These functions treat the non-number arguments
and return non-numbers as specified in the C99 specification. These functions
do not set errno nor raise an exception.
These functions evaluate the inverse hyperbolic cosine function of a value in a.
The error bound of the returned value is 1.0 ULP if a is in [1, 1.34e+154] for
the double-precision function or 1.001 ULP if a is in [1, 1.84e+19] for the
single-precision function. If a is lower than 1, nan is returned (including for
the negative infinity case). If the argument is positive (including positive
infinity) but lives outside the ranges defined above, then positive infinity is
returned. These functions treat the non-number arguments and return non-numbers
as specified in the C99 specification. These functions do not set errno nor raise
an exception.

### Sleef_atanh_u10
### Sleef_atanhf_u10
Expand Down
Loading