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

78 views (last 30 days)
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.

Accepted Answer

Fabio Freschi
Fabio Freschi on 8 Oct 2019
Edited: Fabio Freschi on 8 Oct 2019
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

More Answers (0)

Categories

Find more on Loops and Conditional Statements in Help Center and File Exchange

Products


Release

R2019a

Community Treasure Hunt

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

Start Hunting!