We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8d2b43f commit ca7b888Copy full SHA for ca7b888
PathTracking/model_predictive_speed_and_steer_control/notebook.ipynb
@@ -42,7 +42,9 @@
42
"source": [
43
"ODE is\n",
44
"\n",
45
- "$$ \\dot{z} = A'z+B'u$$\n",
+ "$$ \\dot{z} =\\frac{\\partial }{\\partial z} z = A'z+B'u$$\n",
46
+ "\n",
47
+ "where\n",
48
49
"\\begin{equation*}\n",
50
"A' = \n",
@@ -54,7 +56,15 @@
54
56
"\\end{bmatrix}\n",
55
57
"\\end{equation*}\n",
58
- "\n",
59
+ "\\begin{equation*}\n",
60
+ "B' =\n",
61
+ "\\begin{bmatrix}\n",
62
+ "0 & 0 \\\\\n",
63
64
+ "1 & 0 \\\\\n",
65
+ "0 & \\frac{\\bar{v}}{Lcos^2(\\bar{\\delta})} \\\\\n",
66
+ "\\end{bmatrix}\n",
67
+ "\\end{equation*}\n",
68
69
"You can get a discrete-time mode with Forward Euler Discretization with sampling time dt.\n",
70
0 commit comments