Commit aa2d8291 authored by lfarizav's avatar lfarizav

Modifying the complexf structure. This task is necessary to enable...

Modifying the complexf structure. This task is necessary to enable optimizations using SIMD instructions
parent 4f55943b
...@@ -39,8 +39,8 @@ struct complex { ...@@ -39,8 +39,8 @@ struct complex {
}; };
struct complexf { struct complexf {
float r; float x[1200];
float i; float y[1200];
}; };
struct complex16 { struct complex16 {
......
...@@ -59,6 +59,10 @@ typedef struct { ...@@ -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.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment