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

1 visualización (últimos 30 días)
%% 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;

Respuestas (1)

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

Categorías

Más información sobre Simulate Responses to Biological Variability and Doses en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by