Skip to content

Commit

Permalink
Fix Jacobian function description
Browse files Browse the repository at this point in the history
  • Loading branch information
rsasaki0109 committed Nov 19, 2023
1 parent c6707cf commit 97ad5df
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -98,9 +98,9 @@ def jacob_f(x, u):
so
dx/dyaw = -v*dt*sin(yaw)
dx/dv = dt*cos(yaw)
dx/ds = dt*v*cos(yaw)
dy/dyaw = v*dt*cos(yaw)
dy/dv = dt*sin(yaw)
dx/ds = dt*v*cos(yaw)
dy/ds = dt*v*sin(yaw)
"""
yaw = x[2, 0]
Expand Down

0 comments on commit 97ad5df

Please sign in to comment.