C/math.h/lgamma — различия между версиями
Admin (обсуждение | вклад) м (1 версия: Импорт контента...) |
|
(нет различий)
|
Текущая версия на 10:22, 25 мая 2010
lgamma: computes the absolute value of the gamma and returns its natural logarithm
//Declaration: float lgammaf(float arg);
double lgamma(double arg);
long double lgammal(long double arg);
#include <math.h>
#include <stdio.h>
int main(void)
{
printf("%f", lgammaf (1.2));
return 0;
}
/*
-0.085374*/