Skip to content
Snippets Groups Projects
Commit 05371f03 authored by iliya.saroukha's avatar iliya.saroukha :first_quarter_moon:
Browse files

fix: updated taylor poly fig

parent f7ba1330
No related branches found
No related tags found
No related merge requests found
...@@ -171,6 +171,8 @@ def ex2(): ...@@ -171,6 +171,8 @@ def ex2():
axs[0, 1].plot(t, SD.f(t), color='black', label='$f$') axs[0, 1].plot(t, SD.f(t), color='black', label='$f$')
axs[0, 1].plot(t, y0, color='orange', label='$T_{f}$') axs[0, 1].plot(t, y0, color='orange', label='$T_{f}$')
axs[0, 1].plot(SD.Taylor_points[0], SD.f(
SD.Taylor_points[0]), "-o", color='red', label=f'a = {SD.Taylor_points[0]}')
axs[0, 1].set_title( axs[0, 1].set_title(
f'Développement de $T_f$ en $a = {SD.Taylor_points[0]}$') f'Développement de $T_f$ en $a = {SD.Taylor_points[0]}$')
axs[0, 1].set_ylim([-1.2, 1.2]) axs[0, 1].set_ylim([-1.2, 1.2])
...@@ -179,6 +181,8 @@ def ex2(): ...@@ -179,6 +181,8 @@ def ex2():
axs[1, 0].plot(t, SD.f(t), color='black', label='$f$') axs[1, 0].plot(t, SD.f(t), color='black', label='$f$')
axs[1, 0].plot(t, y1, color='blue', label='$T_{f}$') axs[1, 0].plot(t, y1, color='blue', label='$T_{f}$')
axs[1, 0].plot(SD.Taylor_points[1], SD.f(
SD.Taylor_points[1]), "-o", color='red', label=f'a = {SD.Taylor_points[1]}')
axs[1, 0].set_title( axs[1, 0].set_title(
f'Développement de $T_f$ en $a = {SD.Taylor_points[1]}$') f'Développement de $T_f$ en $a = {SD.Taylor_points[1]}$')
axs[1, 0].set_ylim([-1.2, 1.2]) axs[1, 0].set_ylim([-1.2, 1.2])
...@@ -187,6 +191,8 @@ def ex2(): ...@@ -187,6 +191,8 @@ def ex2():
axs[1, 1].plot(t, SD.f(t), color='black', label='$f$') axs[1, 1].plot(t, SD.f(t), color='black', label='$f$')
axs[1, 1].plot(t, y2, color='violet', label='$T_{f}$') axs[1, 1].plot(t, y2, color='violet', label='$T_{f}$')
axs[1, 1].plot(SD.Taylor_points[2], SD.f(
SD.Taylor_points[2]), "-o", color='red', label=f'a = {SD.Taylor_points[2]}')
axs[1, 1].set_title( axs[1, 1].set_title(
f'Développement de $T_f$ en $a = {SD.Taylor_points[2]}$') f'Développement de $T_f$ en $a = {SD.Taylor_points[2]}$')
axs[1, 1].set_ylim([-1.2, 1.2]) axs[1, 1].set_ylim([-1.2, 1.2])
......
figs/ex2_taylor.png

157 KiB | W: | H:

figs/ex2_taylor.png

163 KiB | W: | H:

figs/ex2_taylor.png
figs/ex2_taylor.png
figs/ex2_taylor.png
figs/ex2_taylor.png
  • 2-up
  • Swipe
  • Onion skin
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment