Effacer les filtres
Effacer les filtres

Make a table from a loop

11 vues (au cours des 30 derniers jours)
Ahmad El-Kassem
Ahmad El-Kassem le 26 Avr 2017
Commenté : Deepmala Ray le 2 Jan 2022
Hello
I am trying to make a table that looks like this
_____x_____y____z
1
2
3
4
but i get 3 results for every loop, and i therefore dont know how to put them together

Réponse acceptée

KL
KL le 26 Avr 2017
Modifié(e) : KL le 26 Avr 2017
Hey, you need to save the values inside for loop. You can do it either by creating a bigger x matrix with n rows and 3 columns so you can finally use table(x) to create a table or you can add rows to a predefined table inside the for loop.
T = table;
for n = 1:10
x = P*x+q;
x_t = table(x(1),x(2),x(3));
T = [T; x_t];
end
T.Properties.VariableNames = {'x' 'y' 'z'};
  3 commentaires
Sunil Verma
Sunil Verma le 9 Déc 2020
Modifié(e) : Sunil Verma le 9 Déc 2020
Thanks KL sir, I got solution from your code segment. I am trying since two days. finally I reach on solution. thankyou very much
Deepmala Ray
Deepmala Ray le 2 Jan 2022
thank you so much for this section of code....it helped alot

Connectez-vous pour commenter.

Plus de réponses (1)

safi khan
safi khan le 4 Jan 2020
To Make a Table in MATLAB on for Loop.
Here is the code of Tabe 5.
for a= 1:10
b=a*5
end

Catégories

En savoir plus sur Logical dans Help Center et File Exchange

Tags

Produits

Community Treasure Hunt

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

Start Hunting!

Translated by