how to generate a reference signal from the Driving Scenario Designer App?
9 views (last 30 days)
Show older comments
Hello,I am trying to generate a referene signal from the Driving Scenario Designer app to build mpc controller , I want to get the yaw angle as a vector, everytime I export the scenario as a matlab function, I get the yaw angle only as a (1X1) element .....thanks in advance
0 Comments
Answers (1)
Divija Aleti
on 30 Nov 2020
Hello,
Once you are done building your scenario, place a sensor on your Actor, change the 'Update Interval (ms)' as required and run the scenario. Then click 'Export -> Export Sensor Data' . In the dialogue box that appears, give a variable name to which you want to save the data and click OK. The data gets saved to the MATLAB base workspace. The yaw angles can be accessed as a vector by using a for loop.
For example, after 'Export Sensor Data' is clicked, I saved the data as 'sensor_data' as follows:
sensor_data:
Now to get the yaw angles as a vector, a for loop can be written as:
yaw=zeros(1,6);
for i=1:6
yaw(i)=sensor_data(i).ActorPoses.Yaw;
end
Output:
yaw =
-39.3675 -38.8738 -10.8638 32.5091 -6.1386 -36.1907
1 Comment
Mahmoud Shetwi
on 12 Oct 2023
Hello
Have you come up with any results for the scenarios of how to take the position and Yaw angel from driving?
Please respond, Muhammad
See Also
Categories
Find more on Develop Apps Using App Designer in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!