update exercise 3: implement heat equation simulation in Jupyter notebook, add matrix construction and temperature profile visualization

This commit is contained in:
Félix MARQUET
2025-04-01 11:38:34 +02:00
parent 2f90ba3ac8
commit 3447bc74d5

View File

@@ -307,6 +307,8 @@
" if n+1 in indices_sauvegarde:\n",
" profils.append(T.copy())\n",
"\n",
" print(f\"Solution profils: {profils}\")\n",
"\n",
" # Tracer les profils de température\n",
" plt.figure(figsize=(10, 6))\n",
" for i, t in enumerate(temps_sauvegarde):\n",