Effacer les filtres
Effacer les filtres

i have a for loop and a vector in this loop that chang each loop that spend how can save this vector in all times ?

2 vues (au cours des 30 derniers jours)
like this code: h=1000 for i=1:h m=[i j] end that j change with every i how can save m vectors that produce in each time at loop?

Réponse acceptée

Azzi Abdelmalek
Azzi Abdelmalek le 18 Oct 2013
Modifié(e) : Azzi Abdelmalek le 18 Oct 2013
h=1000
m=zeros(1000,2)
for i=1:h
m(i,:)=[i i+1]; %for example
end
disp(m)
  3 commentaires

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Loops and Conditional Statements dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by