aboutsummaryrefslogtreecommitdiffstats
path: root/buch/papers/lambertw/Bilder/lambertAbstandBauchgefühl.py
diff options
context:
space:
mode:
authorNicolas Tobler <nicolas.tobler@ost.ch>2022-08-23 22:33:40 +0200
committerNicolas Tobler <nicolas.tobler@ost.ch>2022-08-23 22:33:40 +0200
commit6ac6dd132a11abd9ec4955cd2e35e22408c982e6 (patch)
tree902445b16ec2f2b9df3b3659b6139926469c267f /buch/papers/lambertw/Bilder/lambertAbstandBauchgefühl.py
parentAdded Berechnung der rationalen Funktion (diff)
parentMerge pull request #63 from NaoPross/master (diff)
downloadSeminarSpezielleFunktionen-6ac6dd132a11abd9ec4955cd2e35e22408c982e6.tar.gz
SeminarSpezielleFunktionen-6ac6dd132a11abd9ec4955cd2e35e22408c982e6.zip
Merge branch 'master' of https://github.com/AndreasFMueller/SeminarSpezielleFunktionen
Diffstat (limited to 'buch/papers/lambertw/Bilder/lambertAbstandBauchgefühl.py')
-rw-r--r--buch/papers/lambertw/Bilder/lambertAbstandBauchgefühl.py10
1 files changed, 7 insertions, 3 deletions
diff --git a/buch/papers/lambertw/Bilder/lambertAbstandBauchgefühl.py b/buch/papers/lambertw/Bilder/lambertAbstandBauchgefühl.py
index 3a90afa..73b322c 100644
--- a/buch/papers/lambertw/Bilder/lambertAbstandBauchgefühl.py
+++ b/buch/papers/lambertw/Bilder/lambertAbstandBauchgefühl.py
@@ -39,9 +39,11 @@ 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.grid(True)
+plt.tick_params(labelsize=15)
+#plt.xticks(ticks=range(0, 7))
+#plt.yticks(ticks=range(0, 7))
plt.quiver(xmin, ymin, -0.2, 0, scale=1)
plt.text(xmin+0.1, ymin-0.1, "Verfolgungskurve", size=20, rotation=20, color='r')
@@ -55,4 +57,6 @@ plt.rcParams.update({
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
+plt.text(0.02, ymin+0.05, r"$Z$", size=20, c='b')
+plt.ylabel(r"$y$", size=20)
+plt.xlabel(r"$x$", size=20) \ No newline at end of file