Dot indexing is not supported for variables of this type

1 Ansicht (letzte 30 Tage)
Mariam Roy
Mariam Roy am 22 Jul. 2019
Beantwortet: amin ya am 25 Jul. 2019
I'm trying to load a file onto matlab from Opensim, but it shows this error on this line - timevector = rawIK.data(:,1);
%% Load Data
filename = 'C:\...\MoBL-ARMS OpenSim tutorial_33\ModelFiles\InputFiles_module5_scaleIK\IKreach.mot';
delimiterIn = '\t';headerlinesIn = 7;
rawIK = importdata(filename,delimiterIn,headerlinesIn);
timevector = rawIK.data(:,1);
  5 Kommentare
Matt J
Matt J am 25 Jul. 2019
Dot indexing is not supported for variables of this type.
What type of variable is it?

Melden Sie sich an, um zu kommentieren.

Antworten (1)

amin ya
amin ya am 25 Jul. 2019
If your cell has strctures inside, you should first mention the row and column of the cell then access the structure inside a cell.
rawIK{4,1}.data

Kategorien

Mehr zu File Operations 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