for loop question

1 view (last 30 days)
raymond
raymond on 28 Nov 2011
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

Accepted Answer

Andrei Bobrov
Andrei Bobrov on 28 Nov 2011
n = 1:4;
r = cell2mat(arrayfun(@(x)1:10*10^x,n,'un',0));

More Answers (0)

Categories

Find more on Loops and Conditional Statements in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!