|
Packit Service |
82fcde |
/* Copyright (C) 2011-2018 Free Software Foundation, Inc.
|
|
Packit Service |
82fcde |
This file is part of the GNU C Library.
|
|
Packit Service |
82fcde |
Contributed by Ulrich Drepper <drepper@gmail.com>, 2011.
|
|
Packit Service |
82fcde |
|
|
Packit Service |
82fcde |
The GNU C Library is free software; you can redistribute it and/or
|
|
Packit Service |
82fcde |
modify it under the terms of the GNU Lesser General Public
|
|
Packit Service |
82fcde |
License as published by the Free Software Foundation; either
|
|
Packit Service |
82fcde |
version 2.1 of the License, or (at your option) any later version.
|
|
Packit Service |
82fcde |
|
|
Packit Service |
82fcde |
The GNU C Library is distributed in the hope that it will be useful,
|
|
Packit Service |
82fcde |
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
Packit Service |
82fcde |
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
Packit Service |
82fcde |
Lesser General Public License for more details.
|
|
Packit Service |
82fcde |
|
|
Packit Service |
82fcde |
You should have received a copy of the GNU Lesser General Public
|
|
Packit Service |
82fcde |
License along with the GNU C Library; if not, see
|
|
Packit Service |
82fcde |
<http://www.gnu.org/licenses/>. */
|
|
Packit Service |
82fcde |
|
|
Packit Service |
82fcde |
|
|
Packit Service |
82fcde |
/* __ieee754_atanh(x)
|
|
Packit Service |
82fcde |
Method :
|
|
Packit Service |
82fcde |
1.Reduced x to positive by atanh(-x) = -atanh(x)
|
|
Packit Service |
82fcde |
2.For x>=0.5
|
|
Packit Service |
82fcde |
1 2x x
|
|
Packit Service |
82fcde |
atanh(x) = --- * log(1 + -------) = 0.5 * log1p(2 * --------)
|
|
Packit Service |
82fcde |
2 1 - x 1 - x
|
|
Packit Service |
82fcde |
|
|
Packit Service |
82fcde |
For x<0.5
|
|
Packit Service |
82fcde |
atanh(x) = 0.5*log1p(2x+2x*x/(1-x))
|
|
Packit Service |
82fcde |
|
|
Packit Service |
82fcde |
Special cases:
|
|
Packit Service |
82fcde |
atanh(x) is NaN if |x| > 1 with signal;
|
|
Packit Service |
82fcde |
atanh(NaN) is that NaN with no signal;
|
|
Packit Service |
82fcde |
atanh(+-1) is +-INF with signal.
|
|
Packit Service |
82fcde |
|
|
Packit Service |
82fcde |
*/
|
|
Packit Service |
82fcde |
|
|
Packit Service |
82fcde |
#include <float.h>
|
|
Packit Service |
82fcde |
#include <inttypes.h>
|
|
Packit Service |
82fcde |
#include <math.h>
|
|
Packit Service |
82fcde |
#include <math-barriers.h>
|
|
Packit Service |
82fcde |
#include <math_private.h>
|
|
Packit Service |
82fcde |
#include <math-underflow.h>
|
|
Packit Service |
82fcde |
|
|
Packit Service |
82fcde |
static const float huge = 1e30;
|
|
Packit Service |
82fcde |
|
|
Packit Service |
82fcde |
float
|
|
Packit Service |
82fcde |
__ieee754_atanhf (float x)
|
|
Packit Service |
82fcde |
{
|
|
Packit Service |
82fcde |
float xa = fabsf (x);
|
|
Packit Service |
82fcde |
float t;
|
|
Packit Service |
82fcde |
if (isless (xa, 0.5f))
|
|
Packit Service |
82fcde |
{
|
|
Packit Service |
82fcde |
if (__glibc_unlikely (xa < 0x1.0p-28f))
|
|
Packit Service |
82fcde |
{
|
|
Packit Service |
82fcde |
math_force_eval (huge + x);
|
|
Packit Service |
82fcde |
math_check_force_underflow (x);
|
|
Packit Service |
82fcde |
return x;
|
|
Packit Service |
82fcde |
}
|
|
Packit Service |
82fcde |
|
|
Packit Service |
82fcde |
t = xa + xa;
|
|
Packit Service |
82fcde |
t = 0.5f * __log1pf (t + t * xa / (1.0f - xa));
|
|
Packit Service |
82fcde |
}
|
|
Packit Service |
82fcde |
else if (__glibc_likely (isless (xa, 1.0f)))
|
|
Packit Service |
82fcde |
t = 0.5f * __log1pf ((xa + xa) / (1.0f - xa));
|
|
Packit Service |
82fcde |
else
|
|
Packit Service |
82fcde |
{
|
|
Packit Service |
82fcde |
if (isgreater (xa, 1.0f))
|
|
Packit Service |
82fcde |
return (x - x) / (x - x);
|
|
Packit Service |
82fcde |
|
|
Packit Service |
82fcde |
return x / 0.0f;
|
|
Packit Service |
82fcde |
}
|
|
Packit Service |
82fcde |
|
|
Packit Service |
82fcde |
return __copysignf (t, x);
|
|
Packit Service |
82fcde |
}
|
|
Packit Service |
82fcde |
strong_alias (__ieee754_atanhf, __atanhf_finite)
|