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

1 Ansicht (letzte 30 Tage)
%% 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;

Antworten (1)

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

Kategorien

Mehr zu Simulate Responses to Biological Variability and Doses finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by