Creating zero value vectors with for-loop
7 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Christian Plitz
il 13 Gen 2017
Commentato: Akira Agata
il 8 Mar 2017
Hi there,
I want to create m1 vectors which increase their size step by step. All values of the vectors should be 0. So the first vector has the size 1x1 the second 2x1 and so on. I tried it using a for loop but I ended up with an array exceeds maximum error...
m1 = 1275;
for m = 1:m1
f(m) = zeros(1:m1);
end
4 Commenti
Jan
il 3 Mar 2017
@Akira: Please post this as answer, such that the it can be accepted to mark this thread as solved.
Akira Agata
il 8 Mar 2017
@Jan: Sorry for my belated response. I've just posted it as answer. Thank you!
Risposta accettata
Akira Agata
il 8 Mar 2017
I would like to re-post it. Thank you, Jan-san!
m1 = 1275;
f = cell(m1,1);
for kk = 1:m1
f{kk} = zeros(kk, 1);
end
0 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Loops and Conditional Statements in Help Center e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!