Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/C/Cephes/   (Cephes Mathematical Library ©)  Datei vom 9.5.2026 mit Größe 3 kB image not shown  

Quelle  sinh.c

  Sprache: C
 

/* sinh.c
 *
 * Hyperbolic sine
 *
 *
 *
 * SYNOPSIS:
 *
 * double x, y, sinh();
 *
 * y = sinh( x );
 *
 *
 *
 * DESCRIPTION:
 *
 * Returns hyperbolic sine of argument in the range MINLOG to
 * MAXLOG.
 *
 * The range is partitioned into two segments.  If |x| <= 1, a
 * rational function of the form x + x**3 P(x)/Q(x) is employed.
 * Otherwise the calculation is sinh(x) = ( exp(x) - exp(-x) )/2.
 *
 *
 *
 * ACCURACY:
 *
 *                      Relative error:
 * arithmetic   domain     # trials      peak         rms
 *    DEC      +- 88        50000       4.0e-17     7.7e-18
 *    IEEE     +-MAXLOG     30000       2.6e-16     5.7e-17
 *
 */


/*
Cephes Math Library Release 2.8:  June, 2000
Copyright 1984, 1995, 2000 by Stephen L. Moshier
*/


#include "mconf.h"

#ifdef UNK
static double P[] = {-7.89474443963537015605E-1, -1.63725857525983828727E2,
                     -1.15614435765005216044E4, -3.51754964808151394800E5};
static double Q[] = {
    /* 1.00000000000000000000E0,*/
    -2.77711081420602794433E2, 3.61578279834431989373E4,
    -2.11052978884890840399E6};
#endif

#ifdef DEC
static unsigned short P[] = {
    01401120015377004273101632550142043013472101461770123761,
    01434640122706003435300060170144653014053601576650054045};
static unsigned short Q[] = {
    /*0040200,0000000,0000000,0000000,*/
    014221201554040133513002204000440150036723,
    017327100110530145400015040700237100001034};
#endif

#ifdef IBMPC
static unsigned short P[] = {0x3cd6, 0xe8bb, 0x435f, 0xbfe9, 0xf4fe, 0x398f,
                             0x773a, 0xc064, 0x6182, 0xc71d, 0x94b8, 0xc0c6,
                             0xab05, 0xdbf6, 0x782b, 0xc115};
static unsigned short Q[] = {
    /*0x0000,0x0000,0x0000,0x3ff0,*/
    0x6484, 0x96e9, 0x5b60, 0xc071, 0x2245, 0x7ed7,
    0xa7ba, 0x40e1, 0x0044, 0xe4f9, 0x1a20, 0xc140};
#endif

#ifdef MIEEE
static unsigned short P[] = {0xbfe9, 0x435f, 0xe8bb, 0x3cd6, 0xc064, 0x773a,
                             0x398f, 0xf4fe, 0xc0c6, 0x94b8, 0xc71d, 0x6182,
                             0xc115, 0x782b, 0xdbf6, 0xab05};
static unsigned short Q[] = {0xc071, 0x5b60, 0x96e9, 0x6484, 0x40e1, 0xa7ba,
                             0x7ed7, 0x2245, 0xc140, 0x1a20, 0xe4f9, 0x0044};
#endif

#ifdef ANSIPROT
extern double fabs(double);
extern double exp(double);
extern double polevl(doublevoid *, int);
extern double p1evl(doublevoid *, int);
#else
double fabs(), exp(), polevl(), p1evl();
#endif
extern double INFINITY, MINLOG, MAXLOG, LOGE2;

double sinh(x) double x;
{
  double a;

#ifdef MINUSZERO
  if (x == 0.0)
    return (x);
#endif
  a = fabs(x);
  if ((x > (MAXLOG + LOGE2)) || (x > -(MINLOG - LOGE2))) {
    mtherr("sinh", DOMAIN);
    if (x > 0)
      return (INFINITY);
    else
      return (-INFINITY);
  }
  if (a > 1.0) {
    if (a >= (MAXLOG - LOGE2)) {
      a = exp(0.5 * a);
      a = (0.5 * a) * a;
      if (x < 0)
        a = -a;
      return (a);
    }
    a = exp(a);
    a = 0.5 * a - (0.5 / a);
    if (x < 0)
      a = -a;
    return (a);
  }

  a *= a;
  return (x + x * a * (polevl(a, P, 3) / p1evl(a, Q, 3)));
}

Messung V0.5 in Prozent
C=96 H=94 G=94

¤ Dauer der Verarbeitung: 0.5 Sekunden  ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

Beweissystem der NASA

Beweissystem Isabelle

NIST Cobol Testsuite

Cephes Mathematical Library

Wiener Entwicklungsmethode

Haftungshinweis

Die Informationen auf dieser Webseite wurden nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit, noch Qualität der bereit gestellten Informationen zugesichert.

Bemerkung:

Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.