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(:
88 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Shawn Berry
el 13 de Mzo. de 2022
Comentada: Peter Perkins
el 15 de Mzo. de 2022
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.
0 comentarios
Respuesta aceptada
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
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.
Más respuestas (2)
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,:);
2 comentarios
Peter Perkins
el 14 de Mzo. de 2022
Editada: Peter Perkins
el 14 de Mzo. de 2022
DON'T use xlsread, as the doc warns. It's old and not recommended. Use readtable (as you were doing) or readmatrix.
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
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.
Ver también
Categorías
Más información sobre Matrix Indexing en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!