Help for plotting a moving object

Dear all,
I am doing a project about multi-lanes highway simulation, and to get starting, I am looking for some literatures to guide me how to draw/plot moving objects, like cars, in Matlab or does someone have the code ? Please help me ! Thanks a lot

1 件のコメント

wael ali
wael ali 2015 年 12 月 10 日
hi every one, how can I model a moving train scenario that move linearly from point 1 to point 2

サインインしてコメントする。

回答 (2 件)

Happy61
Happy61 2013 年 5 月 28 日
編集済み: Happy61 2013 年 5 月 31 日

1 投票

It may sound complicated but it's really easy to draw/plot moving object in MATLAB.
h=[];
for j=1:TimeSteps
delete(h)
h=plot (x.position(1,j), y.position(1,j))
drawnow;
end
TimeSteps: being duration of the simulation, x, y are the x and y position of your vehicle for each timestep.
I have experience building traffic simulator in MATLAB, so if you have any more questions don't hesitate to ask.

12 件のコメント

Son
Son 2013 年 5 月 28 日
thank you very much, may I have your email address ???
Happy61
Happy61 2013 年 5 月 31 日
Hi, You are very welcome! I tried sending you my email through private message but it didn't work. :( Maybe you can send me your email address or you can just ask me any questions you have here. Cheers.
Image Analyst
Image Analyst 2013 年 5 月 31 日
And what is the point of "h"? You probably want h=plot(.....
Happy61
Happy61 2013 年 5 月 31 日
oh yea..I forgot to type the "h"...thanks!
ranjani raja
ranjani raja 2016 年 9 月 20 日
編集済み: ranjani raja 2016 年 9 月 20 日
Hi,In the above code where should I add my video from which I have to plot the movement of the car?
Walter Roberson
Walter Roberson 2016 年 9 月 20 日
parismita bhuyan
parismita bhuyan 2018 年 1 月 18 日
how to move the vehicles in a specific direction with speed
Walter Roberson
Walter Roberson 2018 年 1 月 18 日
"how to move the vehicles in a specific direction with speed"
Given a direction as an angle, and given a speed, you can use pol2cart to convert the angle and speed to x and y offsets. You would add those offsets to the coordinates of your objects at each step and update the coordinates in the plot.
reena raj
reena raj 2021 年 11 月 17 日
itisnot working
Walter Roberson
Walter Roberson 2021 年 11 月 17 日
reena raj
reena raj 2021 年 11 月 18 日
please sent all the code
Walter Roberson
Walter Roberson 2021 年 11 月 18 日
Please post your attempt along with the error message you are getting.

サインインしてコメントする。

Walter Roberson
Walter Roberson 2018 年 1 月 18 日

0 投票

You should consider creating one hgtransform for each object to be drawn, and then set the Parent of the object to be drawn to be the hgtransform. Then when you need to move or rotate the object, change the transform matrix of the hgtransform; you might find hgmaketform() handy for that.

カテゴリ

ヘルプ センター および File ExchangeAnimation についてさらに検索

質問済み:

Son
2013 年 5 月 27 日

コメント済み:

2021 年 11 月 18 日

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by