From 87eb67408f9230315494a8cf66fe264196a04ad0 Mon Sep 17 00:00:00 2001 From: Paweł Redman Date: Sun, 16 Feb 2020 11:14:09 +0100 Subject: Ostateczna wersja pracy dyplomowej --- src/d_wektory_wlasne.py | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 src/d_wektory_wlasne.py (limited to 'src/d_wektory_wlasne.py') diff --git a/src/d_wektory_wlasne.py b/src/d_wektory_wlasne.py new file mode 100644 index 0000000..4bcdd66 --- /dev/null +++ b/src/d_wektory_wlasne.py @@ -0,0 +1,16 @@ +from shared import * +import crl, crl.tables + +plot_setup(width=0.7) + +for i in range(3): + plt.plot(crl.tables.D_eigenvectors[:, 0], + crl.tables.D_eigenvectors[:, i + 1], + ["k", "b", "g"][i] , label="$S_%d(\\lambda)$" % i) + +plt.xlabel("$\\lambda$ [nm]") +plt.ylabel("$n_\\lambda(\\lambda)$") +plt.xlim(300, 830) +plt.legend() +plot_grid() +plot_export() -- cgit