##// END OF EJS Templates
Fix typo Lorentz -> Lorenz
Thomas Kluyver -
Show More
@@ -112,7 +112,7 b''
112 " ax.set_zlim((5, 55))\n",
112 " ax.set_zlim((5, 55))\n",
113 " \n",
113 " \n",
114 " def lorenz_deriv(x_y_z, t0, sigma=sigma, beta=beta, rho=rho):\n",
114 " def lorenz_deriv(x_y_z, t0, sigma=sigma, beta=beta, rho=rho):\n",
115 " \"\"\"Compute the time-derivative of a Lorentz system.\"\"\"\n",
115 " \"\"\"Compute the time-derivative of a Lorenz system.\"\"\"\n",
116 " x, y, z = x_y_z\n",
116 " x, y, z = x_y_z\n",
117 " return [sigma * (y - x), x * (rho - z) - y, x * y - beta * z]\n",
117 " return [sigma * (y - x), x * (rho - z) - y, x * y - beta * z]\n",
118 "\n",
118 "\n",
@@ -13433,6 +13433,18 b''
13433 "kernelspec": {
13433 "kernelspec": {
13434 "display_name": "Python 3",
13434 "display_name": "Python 3",
13435 "name": "python3"
13435 "name": "python3"
13436 },
13437 "language_info": {
13438 "codemirror_mode": {
13439 "name": "ipython",
13440 "version": 3
13441 },
13442 "file_extension": ".py",
13443 "mimetype": "text/x-python",
13444 "name": "python",
13445 "nbconvert_exporter": "python",
13446 "pygments_lexer": "ipython3",
13447 "version": "3.4.2"
13436 }
13448 }
13437 },
13449 },
13438 "nbformat": 4,
13450 "nbformat": 4,
General Comments 0
You need to be logged in to leave comments. Login now