Skip to content

Instantly share code, notes, and snippets.

@cristeab
Created September 27, 2020 10:58
Show Gist options
  • Select an option

  • Save cristeab/cbd45ab6b47c7faebf5d3d7513f068bc to your computer and use it in GitHub Desktop.

Select an option

Save cristeab/cbd45ab6b47c7faebf5d3d7513f068bc to your computer and use it in GitHub Desktop.
#!/usr/bin/env python
from pyitpp import itload
from matplotlib.pyplot import *
out = itload('pccc_bersim_awgn.it')
semilogy(out['EbN0_dB'], out['BER'].T, 'o-')
grid()
xlabel('$E_b/N_0 [dB]$')
ylabel('$BER$')
show()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment