71 lines
1.4 KiB
C
71 lines
1.4 KiB
C
/* _LSinh function */
|
|
#include "wctype.h"
|
|
#include "xmath.h"
|
|
_STD_BEGIN
|
|
|
|
/* coefficients */
|
|
#define NP (sizeof (p) / sizeof (p[0]) - 1)
|
|
static const long double p[] = { /* courtesy Dr. Tim Prince */
|
|
0.0000000000000028486835L,
|
|
0.0000000000007646464279L,
|
|
0.0000000001605905091647L,
|
|
0.0000000250521083436962L,
|
|
0.0000027557319224130455L,
|
|
0.0001984126984126956009L,
|
|
0.0083333333333333336073L,
|
|
0.1666666666666666666564L,
|
|
1.0000000000000000000001L};
|
|
|
|
_CRTIMP2 long double __cdecl _LSinh(long double x, long double y)
|
|
{ /* compute y*sinh(x), |y| <= 1 */
|
|
switch (_LDtest(&x))
|
|
{ /* test for special codes */
|
|
case NAN:
|
|
errno = EDOM;
|
|
return (x);
|
|
case INF:
|
|
if (y == 0)
|
|
return (0);
|
|
errno = ERANGE;
|
|
return (LSIGN(x) ? -_LInf._L : _LInf._L);
|
|
case 0:
|
|
return (0);
|
|
default: /* finite */
|
|
{ /* compute sinh(finite) */
|
|
short neg;
|
|
|
|
if (x < 0)
|
|
x = -x, neg = 1;
|
|
else
|
|
neg = 0;
|
|
if (x < _LRteps._L)
|
|
x *= y; /* x tiny */
|
|
else if (x < 1)
|
|
{
|
|
long double w = x * x;
|
|
|
|
x += x * w * _LPoly(w, p, NP - 1);
|
|
x *= y;
|
|
}
|
|
else if (x < _LXbig)
|
|
{ /* worth adding in exp(-x) */
|
|
_LExp(&x, 1, -1);
|
|
x = y * (x - 0.25 / x);
|
|
}
|
|
else if (0 <= _LExp(&x, y, -1))
|
|
errno = ERANGE; /* x large */
|
|
return (neg ? -x : x);
|
|
}
|
|
}
|
|
}
|
|
_STD_END
|
|
|
|
/*
|
|
* Copyright (c) 1994 by P.J. Plauger. ALL RIGHTS RESERVED.
|
|
* Consult your license regarding permissions and restrictions.
|
|
*/
|
|
|
|
/*
|
|
941029 pjp: added _STD machinery
|
|
*/
|