aboutsummaryrefslogtreecommitdiffstats
path: root/buch/papers/lambertw/Bilder/Strategie.py
diff options
context:
space:
mode:
authorKuster Yanik <yanik.kuster@ost.ch>2022-08-06 15:26:51 +0200
committerKuster Yanik <yanik.kuster@ost.ch>2022-08-06 15:26:51 +0200
commit9b9ef5890fe375831f015e2a42ca719c102cadd9 (patch)
tree7e002d304ba257884cc5cecf3c7e5b081916cb41 /buch/papers/lambertw/Bilder/Strategie.py
parentadded new subsection wird das Ziel erreicht? (diff)
downloadSeminarSpezielleFunktionen-9b9ef5890fe375831f015e2a42ca719c102cadd9.tar.gz
SeminarSpezielleFunktionen-9b9ef5890fe375831f015e2a42ca719c102cadd9.zip
Removed unused pictures. Applied last changes to teil0 and teil1.
Diffstat (limited to 'buch/papers/lambertw/Bilder/Strategie.py')
-rw-r--r--buch/papers/lambertw/Bilder/Strategie.py11
1 files changed, 8 insertions, 3 deletions
diff --git a/buch/papers/lambertw/Bilder/Strategie.py b/buch/papers/lambertw/Bilder/Strategie.py
index 975e248..f09edfb 100644
--- a/buch/papers/lambertw/Bilder/Strategie.py
+++ b/buch/papers/lambertw/Bilder/Strategie.py
@@ -9,6 +9,9 @@ import pylatex
import numpy as np
import matplotlib.pyplot as plt
+
+
+
N = np.array([0, 0])
V = np.array([1, 4])
Z = np.array([5, 5])
@@ -34,9 +37,10 @@ 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", size=20)
-ax.set_ylabel("y", size=20)
+ax.tick_params(labelsize=15)
+plt.xticks(ticks=range(0, 7))
+plt.yticks(ticks=range(0, 7))
ax.text(2.5, 4.5, "Visierlinie", size=20, rotation=10)
plt.rcParams.update({
@@ -48,6 +52,7 @@ plt.rcParams.update({
ax.text(1.6, 4.3, r"$\dot{v}$", size=20)
ax.text(0.65, 3.9, r"$V$", size=20, c='b')
ax.text(5.15, 4.85, r"$Z$", size=20, c='b')
-
+ax.set_xlabel(r"$x$", size=20)
+ax.set_ylabel(r"$y$", size=20)