plot_eye
Plot the eye diagram
Séquence d'appel
plot_eye(x, T);
plot_eye(x, T);
Paramètres
- x:
input sequence
- T:
symbol period (in samples)
input sequence
symbol period (in samples)
Description
Plot the eye diagram of a synchronous data signal, which is a scatter plot of the signal where the time domain is considered modulo the symbol period (actually using a trigger on the signal, to account for symbol period variations).
This diagram is useful to view the impact of ISI (Inter-Symbols Interferences).
Exemple
T = 128; // Symbol period x = nrz(prbs(500),T); // 500 symbols, NRZ shape x = ma(x, osf); // moving average x = awgn(x, 0.1); // AWGN noise clf(); plot_eye(x, T); |
