Created
September 27, 2020 10:58
-
-
Save cristeab/cbd45ab6b47c7faebf5d3d7513f068bc to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/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