Effacer les filtres
Effacer les filtres

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

6 vues (au cours des 30 derniers jours)
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

Réponse acceptée

Image Analyst
Image Analyst le 2 Mai 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, :);

Plus de réponses (0)

Catégories

En savoir plus sur Tables dans Help Center et File Exchange

Produits


Version

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by