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

6 次查看(过去 30 天)
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

采纳的回答

Image Analyst
Image Analyst 2022-5-2
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, :);

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Tables 的更多信息

产品


版本

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by