diff options
Diffstat (limited to 'buch/papers/lambertw/Bilder')
-rw-r--r-- | buch/papers/lambertw/Bilder/Intuition.pdf | bin | 186972 -> 187016 bytes | |||
-rw-r--r-- | buch/papers/lambertw/Bilder/Strategie.py | 4 | ||||
-rw-r--r-- | buch/papers/lambertw/Bilder/lambertAbstandBauchgefühl.py | 10 |
3 files changed, 7 insertions, 7 deletions
diff --git a/buch/papers/lambertw/Bilder/Intuition.pdf b/buch/papers/lambertw/Bilder/Intuition.pdf Binary files differindex 236212a..739b02b 100644 --- a/buch/papers/lambertw/Bilder/Intuition.pdf +++ b/buch/papers/lambertw/Bilder/Intuition.pdf diff --git a/buch/papers/lambertw/Bilder/Strategie.py b/buch/papers/lambertw/Bilder/Strategie.py index d7d06cb..975e248 100644 --- a/buch/papers/lambertw/Bilder/Strategie.py +++ b/buch/papers/lambertw/Bilder/Strategie.py @@ -34,8 +34,8 @@ ax.quiver(X, Y, U, W, angles='xy', scale_units='xy', scale=1, headwidth=5, headl ax.plot([V[0], (VZ+V)[0]], [V[1], (VZ+V)[1]], 'k--') ax.plot(np.vstack([V, Z])[:, 0], np.vstack([V, Z])[:,1], 'bo', markersize=10) -ax.set_xlabel("x") -ax.set_ylabel("y") +ax.set_xlabel("x", size=20) +ax.set_ylabel("y", size=20) ax.text(2.5, 4.5, "Visierlinie", size=20, rotation=10) diff --git a/buch/papers/lambertw/Bilder/lambertAbstandBauchgefühl.py b/buch/papers/lambertw/Bilder/lambertAbstandBauchgefühl.py index 9031bfc..3a90afa 100644 --- a/buch/papers/lambertw/Bilder/lambertAbstandBauchgefühl.py +++ b/buch/papers/lambertw/Bilder/lambertAbstandBauchgefühl.py @@ -39,8 +39,8 @@ plt.plot(0, ymin, 'bo', markersize=10) plt.plot([0, xmin], [ymin, ymin], 'k--') #plt.xlim(-0.1, 1) #plt.ylim(1, 2) -#plt.ylabel("y") -#plt.xlabel("x") +plt.ylabel("y") +plt.xlabel("x") plt.grid(True) plt.quiver(xmin, ymin, -0.2, 0, scale=1) @@ -53,6 +53,6 @@ plt.rcParams.update({ "font.serif": ["New Century Schoolbook"], }) -plt.text(xmin-0.11, ymin-0.12, r"$\dot{v}$", size=30) -plt.text(xmin-0.02, ymin+0.05, r"$V$", size=30, c='b') -plt.text(0.02, ymin+0.05, r"$Z$", size=30, c='b')
\ No newline at end of file +plt.text(xmin-0.11, ymin-0.08, r"$\dot{v}$", size=20) +plt.text(xmin-0.02, ymin+0.05, r"$V$", size=20, c='b') +plt.text(0.02, ymin+0.05, r"$Z$", size=20, c='b')
\ No newline at end of file |