Azzera filtri
Azzera filtri

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

Risposta accettata

Azzi Abdelmalek
Azzi Abdelmalek il 18 Ott 2013
Modificato: Azzi Abdelmalek il 18 Ott 2013
h=1000
m=zeros(1000,2)
for i=1:h
m(i,:)=[i i+1]; %for example
end
disp(m)
  3 Commenti

Accedi per commentare.

Più risposte (0)

Categorie

Scopri di più su Loops and Conditional Statements in Help Center e File Exchange

Tag

Community Treasure Hunt

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

Start Hunting!

Translated by