Why Matlab does not read the input value?
显示 更早的评论
Hello to everyone, I've got this problem with a programm that deal with autonomous driving...In particular within the function that take into account the acceleration of the leader vehicle, i'm trying to implement a constant deceleration of the vehicle from a cruice velocity of 10 m/s to 0. But in this case I'm considering that the car is not riding on a flat path but along a slope. I would like to have a deceleration of 0.1 regardless the grade.
t_stop=100;
slope_perc=input('put the % value of the slop= ');
theta=atan(slope_perc/100);
delta=0.1 +9.81*sin(theta);
if t<t_stop
alead=-9.81*sin(theta)-delta;
else
alead=0;
end
When I run the code matlab asks me "put the % value of the slope= " but when I insert the value, the programm doesn't go on and keeps asking always to put the value...I know that you should read all the code but, according to you, have I write something wrong? Thanks.
2 个评论
Here's what I get,
put the percentual value of the slope= 3
Undefined function or variable 'pendenza_perc'.
Error in test (line 3)
theta=atan(pendenza_perc/100);
Federico Ferrara
2020-8-13
回答(1 个)
Jan
2020-8-13
0 个投票
This piece of code is called repeatedly. This shown code seems to be fine, so the behavior is caused the code, which calls this piece.
类别
在 帮助中心 和 File Exchange 中查找有关 Data Type Identification 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!