24 lines
586 B
Python
24 lines
586 B
Python
|
#!/usr/bin/env python3
|
||
|
|
||
|
import sys
|
||
|
|
||
|
import numpy as np
|
||
|
import matplotlib.pyplot as pp
|
||
|
|
||
|
with open(sys.argv[1], 'rb') as infile:
|
||
|
header = infile.read(4)
|
||
|
if header != b'CPX_':
|
||
|
print(f"Error: not a complex signal file. Format {header} not implemented yet.")
|
||
|
exit(1)
|
||
|
|
||
|
T = np.fromfile(infile, dtype=np.float32, count=1)
|
||
|
data = np.fromfile(infile, dtype=np.complex64)
|
||
|
|
||
|
t = np.arange(0, T*data.size, T)
|
||
|
|
||
|
pp.plot(t, np.real(data), 'r-')
|
||
|
pp.plot(t, np.imag(data), 'b-')
|
||
|
pp.legend(['In-phase', 'Quadrature'])
|
||
|
pp.xlabel('Time [s]')
|
||
|
pp.show()
|