C/math.h/atanh

Материал из C\C++ эксперт
Версия от 13:22, 25 мая 2010; Admin (обсуждение | вклад) (1 версия: Импорт контента...)
(разн.) ← Предыдущая | Текущая версия (разн.) | Следующая → (разн.)
Перейти к: навигация, поиск

atanh: returns the arc hyperbolic tangent of arg

<source lang="cpp">

//Declaration: float atanhf(float arg);

              double atanh(double arg); 
              long double atanhl(long double arg);  

//Parameter: This argument must be in the range -1 to 1.


 #include <math.h>
 #include <stdio.h>
 int main(void)
 {
   printf("%f.\n",  atanh(12));
   return 0;
 }
        

/* -1.#IND00.

  • /
      </source>