Insert waypoints into a simulink model
19 次查看(过去 30 天)
显示 更早的评论
I'm guiding an UAV to land at a specific point on the ground. I have used some waypoints algorithm to create a set of waypoints (x,y) between the starting and ending points. I need to send these waypoints one by one to the flight Simulink model so that the model could switch to the next waypoint once the current one is reached. Any tips how I can do that ?
3 个评论
回答(1 个)
Birdman
2018-1-19
One approach would be using To Workspace block in Simulink. I don't know how you configured and set your model but the usage of To Workspace block is as follows:
Consider your x and y data as 1000x1 vectors respectively. To be able to provide data to Simulink, you need to provide it with a time data which will imitate Simulink's simulation time. Therefore if we again consider x and y data to be a column vector, also consider that your time vector is a column vector as well and have same number of rows with your datas, in this case, construct the array as follows:
data=[time x y];
After you do this, write data to your block and separate the output of the To Workspace block with a Demux having an output of 2, to be able to use your x and y data.
Hope this helps.
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!