Azzera filtri
Azzera filtri

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

6 visualizzazioni (ultimi 30 giorni)
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

Risposta accettata

Image Analyst
Image Analyst il 2 Mag 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, :);

Più risposte (0)

Categorie

Scopri di più su Tables in Help Center e File Exchange

Prodotti


Release

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by