Appending a table to another index error

1 次查看(过去 30 天)
Hi all
I am appending a table to another one during a loop, every time I calculate the first one in each cycle.
this is the error I get
Subscripting into a table using one subscript (as in t(i)) or three or more subscripts (as in t(i,j,k)) is not supported. Always specify a row subscript and a variable subscript, as in t(rows,vars).
Elapsed time is 21.683230 seconds.
and this is my code :
fn = cell2table(Tc, 'VariableNames', table_without_header.Properties.VariableNames);
if f1==1
Tout{1}=[fn];
else
Tout{f1} = [Tout{f1-1};fn];
end
fn is a 9x1 table and I think after the first loop, that also Tout becomes a 9x11 table I get this problem. how to resolve it ?

采纳的回答

Cris LaPierre
Cris LaPierre 2020-11-9
编辑:Cris LaPierre 2020-11-9
The error explains the issue. You have to specify row and column. Try this (untested):
if f1==1
Tout{1,:}=[fn];
else
Tout{f1,:} = [Tout{f1-1,:};fn];
end
Unless it was a typo, there appears to be an issue with the number of columns in fn (9x1) and Tout (9x11). They will both have to have the same number of columns for this code to work.
  1 个评论
Peter Perkins
Peter Perkins 2020-11-20
This code might run (although I don't think it will), but it seems hard to imagine that this is what you want. You say that "fn is a 9x1 table", and then "Tout becomes a 9x11 table". So how can a 9x1 table be stored in one row of another table? And why is each row of Tout apparently supposed to be an incrementally growing table?
This can't be right.
Are you trying to store each new instance of fn in a cell of a cell array? Or trying to concatenate all the tables vertically? I imagine if it's the latter, you want something more like
Tout = [Tout; fn]
at each iteration of your loop, but you haven't even shown any code with a loop in it.

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Creating and Concatenating Matrices 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by