Clear Filters
Clear Filters

Calling X1, X2, X3, so on variables in loop as Xi, where i is 1 to n.

6 views (last 30 days)
I have variables x1 to x26 kept in a table. I want to call X1, X2, X3, so on variables in a loop as Xi, where i is 1 to 26. Is that possible?
Further I wish to acess the items from the X1 to X26 matrices as X1(1,1) just as a matrix.
Thank you in advance.
Vijesh

Accepted Answer

Image Analyst
Image Analyst on 2 May 2022
Try this:
% Create sample data
x = rand(4, 1);
t = table(x, x, x, x, x, x, x, x, x, x, x, x, x, x, x, x, x, x, x, x, x, x, x, x, x, x)
% Convert table to an array.
ta = table2array(t);
% Extract all x in row 3
row3 = ta(3, :);

More Answers (0)

Categories

Find more on Tables in Help Center and File Exchange

Products


Release

R2021a

Community Treasure Hunt

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

Start Hunting!