Test de las funciones mas problemáticas de la biblioteca.
- Autor
- Fernando Pujaico Rivera
#include <stdio.h>
#include <stdlib.h>
#include <pds/pdsmath.h>
#include <float.h>
int main(int argc, char** argv)
{
double Q,x;
for(x=-4.0;x<=4.01;x=x+0.125)
{
printf("gamma(%.*f)=%.*e\n",DECIMAL_DIG,x,DECIMAL_DIG,Q);
}
return EXIT_SUCCESS;
}