Programa para el testeo de un canal BIAWGN.
- Autor
- Fernando Pujaico Rivera
- Fecha
- 07-05-2011
#include <config.h>
#include <stdlib.h>
#include <pds/pdscm.h>
int main(int argc, char** argv)
{
PdsBVector *X=NULL;
PdsVector *Y=NULL;
X=pds_bvector_new(20);
Y=pds_vector_new(20);
printf("BIAWGN\nA : 2.0\nSigma: 0.3\n\n");
pds_bvector_init_rand(X,0.5);
printf("Input :\n");
pds_bvector_printf(X);
printf("Output:\n");
pds_vector_printf(Y);
pds_vector_free(Y);
pds_bvector_free(X);
printf("\n");
return EXIT_SUCCESS;
}