필터 지우기
필터 지우기

how to generate a reference signal from the Driving Scenario Designer App?

조회 수: 6 (최근 30일)
Mohamed Abdullah
Mohamed Abdullah 2020년 4월 16일
댓글: Mahmoud Shetwi 2023년 10월 12일
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

답변 (1개)

Divija Aleti
Divija Aleti 2020년 11월 30일
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
Mahmoud Shetwi
Mahmoud Shetwi 2023년 10월 12일
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

댓글을 달려면 로그인하십시오.

제품


릴리스

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by