How to write a for loop that indexes the variable name and the funciton?

45 次查看(过去 30 天)
I want to write a loop that will convert a table to an array for many different tables. Each table is named x1, x2,... and I want to keep those same names, so the x1 table goes through the loop and becomes x1, the array.
I'm not sure how to set up the statement to get this to work.
for k = 1:5
x(k) = table2array(x(k))
end
is a generic version of what I started with, but this is obviously incorrect.
This was previously done manually, which works but is slow and takes up a lot of lines.
x1 = table2array(x1);
x2 = table2array(x2);
x3 = table2array(x3);
This goes on for 20 lines.

采纳的回答

Fabio Freschi
Fabio Freschi 2019-10-8
编辑:Fabio Freschi 2019-10-8
You can use cell arrays instead
% store your data in x{k}
for k = 1:5
x{k} = myNiceTable;
end
now you have x{k} instead of xk
% then convert to array
for k = 1:5
x{k} = table2array(x{k});
end
If you really want to use variables with dynamically generated names you should make use of eval
for k = 1:5
sprintf('x%d = table2array(x%d)', k,k);
end

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Loops and Conditional Statements 的更多信息

标签

产品


版本

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by