Compare commits

...

1 Commits

2 changed files with 6 additions and 2 deletions

View File

@@ -39,8 +39,8 @@ struct complex {
}; };
struct complexf { struct complexf {
float r; float x[1200];
float i; float y[1200];
}; };
struct complex16 { struct complex16 {

View File

@@ -59,6 +59,10 @@ typedef struct {
struct complex **ch; struct complex **ch;
///Sampled frequency response (90 kHz resolution) ///Sampled frequency response (90 kHz resolution)
struct complex **chF; struct complex **chF;
///Sampled frequency response (90 kHz resolution), but using floats instead of doubles
struct complexf *chFf;
///Sampled PRACH frequency response (frequency analysis), but using floats instead of doubles
struct complexf *chFf_prach;
///Maximum path delay in mus. ///Maximum path delay in mus.
double Td; double Td;
///Channel bandwidth in MHz. ///Channel bandwidth in MHz.