C Tutorial/math.h/atanh — различия между версиями

Материал из C\C++ эксперт
Перейти к: навигация, поиск
м (1 версия: Импорт контента...)
 
м (1 версия: Импорт контента...)
 
(нет различий)

Текущая версия на 10:32, 25 мая 2010

atanh

Item Value Header file math.h Declaration float atanhf(float arg);double atanh(double arg);long double atanhl(long double arg); Return returns the arc hyperbolic tangent of 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;
  }