Programa para el testeo de las funciones de la biblioteca.
- Autor
- Fernando Pujaico Rivera
- Fecha
- 18-04-2016 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,j,N,M;
PdsMatrix *A=NULL;
N=256;
M=256;
A=pds_matrix_new(N,M);
for(j=0;j<N;j++)
for(i=0;i<M;i++)
{
A->M[j][i]=0.25*sin(2*M_PI*i/N)+0.125*sin(2*2*M_PI*i/N)+0.375;
}
return EXIT_SUCCESS;
}