Index in position 2 exceeds array bounds. Index must not exceed 1. Error in refPose = data.ActorSpecifications(1,46).Waypoints;
이전 댓글 표시
%% load the scene data files
% load data from Driving Scenario Designer
load('USHighway.mat');
refPose = data.ActorSpecifications(1,46).Waypoints;
% define data for velocity lookup table
lookUpt = readmatrix('velocityDistributionHighway.xlsx');
xlt = lookUpt(2:42,1);
ylt = lookUpt(1,2:31);
vel = lookUpt(2:42,2:31)*4/5;
% specify simulation stop time
Ts = 45*5/4;
답변 (1개)
KSSV
2023년 1월 25일
Change this line:
refPose = data.ActorSpecifications(1,46).Waypoints;
to
refPose = data.ActorSpecifications(46,1).Waypoints;
카테고리
도움말 센터 및 File Exchange에서 Vehicle Dynamics Blockset에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!