for loop question

hello i'm trying tom make my for loop iterate 100,1000,10000 and 100000 times using this code
n=[1 2 3 4]
for i=1:1:100.^n
r= i
end
for some reason it only iterates once can someone tell me why please and help me fix it

 Risposta accettata

Andrei Bobrov
Andrei Bobrov il 28 Nov 2011

0 voti

n = 1:4;
r = cell2mat(arrayfun(@(x)1:10*10^x,n,'un',0));

Più risposte (0)

Categorie

Scopri di più su Loops and Conditional Statements in Centro assistenza e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by