support for multiple waveforms

This commit is contained in:
2025-06-29 20:18:52 -05:00
parent d60c55f292
commit 6dfee38d7c
9 changed files with 116 additions and 57 deletions

View File

@@ -92,10 +92,16 @@ def main():
# # plt.ylim([0, .04])
plt.figure()
plt.plot(iq.T.real, '.-')
plt.plot(iq.T.imag, '--.')
plt.plot(iq[0:4, :].T.real, '.-')
# plt.plot(iq[0:4, :].T.imag, '--.')
plt.grid()
plt.figure()
plt.plot(np.mean(iq, axis=0).real, '.-')
plt.plot(np.mean(iq, axis=0).imag, '--.')
plt.grid()
plt.figure()
plt.imshow(db20n(iq), aspect='auto', interpolation='nearest', vmin=vmin, vmax=vmax)
plt.ylabel('Pulse Count')