임준영

change channel.h

#ifndef __CHANNEL
#define __CHANNEL
#include <cmath>
#include <random>
#include "variables.h"
class Cchannel {
class Cchannel
{
public:
Cchannel() {};
float *s; // trasmitted signal
float r[Nbits / Nbitspersymbol*Nsamplespersymbol]; // corrupted signal
float r[Nbits / Nbitspersymbol * Nsamplespersymbol]; // corrupted signal
float n[Nbits / Nbitspersymbol * Nsamplespersymbol];
void AWGN();
};
#endif
\ No newline at end of file
......