Test de las funciones mas problemáticas de la biblioteca.
- Autor
- Fernando Pujaico Rivera
#include <stdio.h>
#include <stdlib.h>
#include <pds/pdsmath.h>
int main(int argc, char** argv)
{
double x,y,z;
for(x=0.0001;x<0.5;x=x+0.05)
{
printf("x=%f\ty=hb(x)=%f\n",x,y);
printf("z=hbinv(y)=%f\t",z);
printf("ERROR=%f ppm\n",(x-z)*1000000/x);
}
return EXIT_SUCCESS;
}