Subscripting into a table using one subscript (as in t(i)) is not supported. Specify a row subscript and a variable subscript, as in t(rows,vars). To select variables, use t(:

118 visualizaciones (últimos 30 días)
Hello, I am new to MATLAB. I am using the example of forecasting a sequence using deep learning by adapting the code from this example:
I am getting an error that suggests I use a subscript on the part of the code where data is trained. I placed a line underneath where I read in the data, thinking this would suffice. I am not sure why MATLAB is expecting something more for the part where you allocate training and test datasets.
data = readtable('numfile.xlsx')
data(5572,1)
numObservations = numel(data);
idxTrain = 1:floor(0.9*numObservations);
idxTest = floor(0.9*numObservations)+1:numObservations;
dataTrain = data(idxTrain);
dataTest = data(idxTest);
The error appears to be highlighting dataTrain. Why would this error occur? I'm using the same code but a different data file.
Thank you.

Respuesta aceptada

Voss
Voss el 13 de Mzo. de 2022
The error seems to be happening because data is a (scalar) table, but the rest of the code was written to expect data to be an array of numbers.
You can try getting the data out of the table and using that:
data = readtable('numfile.xlsx')
data = data{:,1}; % get the first column of data from the table 'data'. store it as 'data'.
numObservations = numel(data);
idxTrain = 1:floor(0.9*numObservations);
idxTest = floor(0.9*numObservations)+1:numObservations;
dataTrain = data(idxTrain);
dataTest = data(idxTest);
  4 comentarios
Peter Perkins
Peter Perkins el 14 de Mzo. de 2022
Unless the data are a column vector, it's probably counterproductive to turn this table into a (numeric?) matrix.
If the data are a numeric column vector, use readmatrix instead of readtable.

Iniciar sesión para comentar.

Más respuestas (2)

yanqi liu
yanqi liu el 14 de Mzo. de 2022
data = xlsread('numfile.xlsx')
data(5572,1)
numObservations = size(data, 1);
idxTrain = 1:floor(0.9*numObservations);
idxTest = floor(0.9*numObservations)+1:numObservations;
dataTrain = data(idxTrain,:);
dataTest = data(idxTest,:);

Peter Perkins
Peter Perkins el 14 de Mzo. de 2022
As the error message suggests, all you need is a colon as the second subscript.
data = readtable('numfile.xlsx')
...
dataTrain = data(idxTrain,:);
dataTest = data(idxTest,:);
If the data are one column vector (which seems unlikely since you are doing deep learning), use readmatrix instead of readtable, and then you can use just one subscript.
  2 comentarios
Shawn Berry
Shawn Berry el 14 de Mzo. de 2022
Hi Peter, just a question because your suggestion may explain why I'm getting another error (I am new to deep learning and working with a single column). The previous answer that I accepted seems to have solved that error but could your suggestion (readmatrix) work to solve a subsequent error I got? It's the 'brace indexing not supported for variables of this type"? In the example I am working from, they use curly braces for XTrain and TTrain but that dataset has more variables, while my data is univariate. Would this affect the error I am getting?
Thanks !
Peter Perkins
Peter Perkins el 15 de Mzo. de 2022
If you are using someone else's code that expects a table, then you need to use tables, even if you only have one variable. It sounds like you are in that situation. "Someone else" might be The MathWorks, and if that's the case I recommend that you read the doc for whatever functions you are using.

Iniciar sesión para comentar.

Categorías

Más información sobre String Parsing en Help Center y File Exchange.

Etiquetas

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by