C Tutorial/math.h/erf

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

erf

Item Value Header file math.h Declaration float erff(float arg);double erf(double arg);long double erfl(long double arg); Return returns the error function of arg.


<source lang="cpp">#include <math.h>

 #include <stdio.h>
 int main(void)
 {
    printf("Value of e to the first: %f.", erf(1.0));

 }</source>