Index in position 2 exceeds array bounds. Index must not exceed 1. Error in refPose = data.Actor​Specificat​ions(1,46)​.Waypoints​;

1 view (last 30 days)
%% 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;

Answers (1)

KSSV
KSSV on 25 Jan 2023
Change this line:
refPose = data.ActorSpecifications(1,46).Waypoints;
to
refPose = data.ActorSpecifications(46,1).Waypoints;

Categories

Find more on Simulate Responses to Biological Variability and Doses 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!