diff --git a/p2/res/impulse_func_estimate.png b/p2/res/impulse_func_estimate.png index 9a9d26f..183e777 100644 Binary files a/p2/res/impulse_func_estimate.png and b/p2/res/impulse_func_estimate.png differ diff --git a/p2/res/signal_u.png b/p2/res/signal_u.png index e929c5a..9087a12 100644 Binary files a/p2/res/signal_u.png and b/p2/res/signal_u.png differ diff --git a/p2/res/signal_y.png b/p2/res/signal_y.png index 9081c2d..487be0a 100644 Binary files a/p2/res/signal_y.png and b/p2/res/signal_y.png differ diff --git a/p2/visualise.py b/p2/visualise.py index f9348b3..8925434 100644 --- a/p2/visualise.py +++ b/p2/visualise.py @@ -23,7 +23,7 @@ plt.clf() lp = sb.lineplot(data=data_uy['u']) lp.set( title='Signal u', - xlabel='samples', + xlabel='kT', ylabel='u', ) fig = lp.get_figure() @@ -34,7 +34,7 @@ plt.clf() lp = sb.lineplot(data=data_uy['y']) lp.set( title='Signal y', - xlabel='samples', + xlabel='kT', ylabel='y', ) fig = lp.get_figure() @@ -47,7 +47,7 @@ lp = sb.lineplot(data=imf, legend=False, linewidth=2.5) lp.set( title='Impulse Function Estimate', xlabel='time (s)', - ylabel='y', + ylabel='amplitude', ) fig = lp.get_figure() fig.subplots_adjust(top=.97)