Programa para el testeo de las funciones de la biblioteca.
- Autor
- Fernando Pujaico Rivera
- Fecha
- 18-04-2011 Este programa solo hace una prueba simple de las funciones que hice mas al tun tun.
#include <config.h>
#include <stdlib.h>
#include <math.h>
#include <pds/pdsra.h>
#include <pds/pdsoctplot.h>
int main(int argc, char* argv[])
{
int i=0,N,a;
FILE *fd=NULL;
PdsVector *X=NULL;
PdsVector *Y=NULL;
N=16;
a=4;
X=pds_vector_new(a*N);
Y=pds_vector_new(a*N);
fd=fopen("datos.dat","w");
for(i=0;i<a*N;i++)
{
X->V[i]=0.123*i;
Y->V[i]=sin(2*M_PI*i/N)+0.5*sin(2*2*M_PI*i/N);
fprintf(fd,"%e\t%e\n",X->V[i],Y->V[i]);
}
fclose(fd);
pds_vector_free(X);
pds_vector_free(Y);
return EXIT_SUCCESS;
}