Fix typo Lorentz -> Lorenz

This commit is contained in:
Thomas Kluyver 2015-01-26 10:07:49 -08:00
parent db8e7428d3
commit 46cb0233da

View File

@ -112,7 +112,7 @@
" ax.set_zlim((5, 55))\n", " ax.set_zlim((5, 55))\n",
" \n", " \n",
" def lorenz_deriv(x_y_z, t0, sigma=sigma, beta=beta, rho=rho):\n", " def lorenz_deriv(x_y_z, t0, sigma=sigma, beta=beta, rho=rho):\n",
" \"\"\"Compute the time-derivative of a Lorentz system.\"\"\"\n", " \"\"\"Compute the time-derivative of a Lorenz system.\"\"\"\n",
" x, y, z = x_y_z\n", " x, y, z = x_y_z\n",
" return [sigma * (y - x), x * (rho - z) - y, x * y - beta * z]\n", " return [sigma * (y - x), x * (rho - z) - y, x * y - beta * z]\n",
"\n", "\n",
@ -13433,6 +13433,18 @@
"kernelspec": { "kernelspec": {
"display_name": "Python 3", "display_name": "Python 3",
"name": "python3" "name": "python3"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.4.2"
} }
}, },
"nbformat": 4, "nbformat": 4,