Skip to content

Commit

Permalink
fix syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
baggepinnen committed Mar 23, 2017
1 parent 88d53fe commit ad128ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/two_link.jl
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ function traj(q0,q1,t, V)
p[i] = q0 + a/2*t^2
pd[i] = a*t
pdd[i] = a
elseif t < = tf-tb
elseif t <= tf-tb
# linear motion
p[i] = (q1+q0-V*tf)/2 + V*t
pd[i] = V
Expand Down

0 comments on commit ad128ff

Please sign in to comment.