diff options
author | sara <sara.halter@gmx.ch> | 2021-12-18 15:18:01 +0100 |
---|---|---|
committer | sara <sara.halter@gmx.ch> | 2021-12-18 15:18:01 +0100 |
commit | 9c9b53d07c7340532c1640e7e77f2c92b627d6e3 (patch) | |
tree | c788fc85cff3a4f3564d80e2db13393f4010bb50 /doc | |
parent | more Doku implementation i (diff) | |
download | Fading-9c9b53d07c7340532c1640e7e77f2c92b627d6e3.tar.gz Fading-9c9b53d07c7340532c1640e7e77f2c92b627d6e3.zip |
figure python file changed
Diffstat (limited to 'doc')
-rw-r--r-- | doc/thesis/figures/data/qpsk_sim_constellations_dynamic_exp_NLOS_5.py | 2 | ||||
-rw-r--r-- | doc/thesis/figures/data/qpsk_sim_constellations_static_symb_vec.py | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/doc/thesis/figures/data/qpsk_sim_constellations_dynamic_exp_NLOS_5.py b/doc/thesis/figures/data/qpsk_sim_constellations_dynamic_exp_NLOS_5.py index c48b87b..4cb1742 100644 --- a/doc/thesis/figures/data/qpsk_sim_constellations_dynamic_exp_NLOS_5.py +++ b/doc/thesis/figures/data/qpsk_sim_constellations_dynamic_exp_NLOS_5.py @@ -16,7 +16,7 @@ samples = [channel, sync, equalized, locked] # print(list(map(len, samples))) start = 67.8e3 -end = start + 500 +end = start + 200 # start = 80e3 # end = start + 1000 diff --git a/doc/thesis/figures/data/qpsk_sim_constellations_static_symb_vec.py b/doc/thesis/figures/data/qpsk_sim_constellations_static_symb_vec.py index 68090a4..26e7b64 100644 --- a/doc/thesis/figures/data/qpsk_sim_constellations_static_symb_vec.py +++ b/doc/thesis/figures/data/qpsk_sim_constellations_static_symb_vec.py @@ -16,9 +16,9 @@ samples = [channel, sync, equalized, locked] # print(list(map(len, samples))) start = 1e3 -end = start +500 +end = start +800 -get_range = lambda arr: arr[int(start):int(end)] +get_range = lambda arr: arr[int(start):int(end):2] get_parts = lambda v: (np.real(v), np.imag(v)) values = map(get_range, samples) |