0

I would like to know how can I convert a raw IQ data file (that was captured using (sdr)) to it's numerical value using matlab. something like this e.x (I=19.5 , Q=90). Thanks in advance.

Michał Turczyn
  • 32,028
  • 14
  • 47
  • 69
AceSiddig
  • 7
  • 7

1 Answers1

0

Are you looking for the amplitude and phase of of your I/Q values? If so then here it is,

I = 19.5;
Q = 90;

amplitude = sqrt(I.^2 + Q.^2);
phase = atan(Q./I);
amahmud
  • 434
  • 4
  • 14