Doubt in a program
1 次查看(过去 30 天)
显示 更早的评论
can someone explain line 13,14?
If I remove that I am getting a blank plot

0 个评论
采纳的回答
Torsten
2023-8-13
编辑:Torsten
2023-8-13
Why ?
In order to plot a time-location curve after the while-loop, the intermediate results for time and location are saved in two separate vectors.
6 个评论
Image Analyst
2023-8-15
Again, it's recommended not to use the name of built-in functions, such as time, as your variable names.
更多回答(1 个)
Image Analyst
2023-8-13
编辑:Image Analyst
2023-8-13
Don't use time as the name of your variable since it's a built-in function. Call it "theTime" or something.
Don't have line 20 - no need to plot twice.
Have lines 13 and 14 come before lines 11 and 12.
Have line 17 say
whos theTime % Display size of vector
whos location
plot(theTime, location, 'r-', 'LineWidth', 2);
grid on;
Post your code as code/text (not an image) if you need any more help after you read this:
2 个评论
Image Analyst
2023-8-14
My advice can be followed this time, on this program. No need to wait until next time (next program).
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Creating and Concatenating Matrices 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!