Clear Filters
Clear Filters

For loop for matrix with increasing numbers

4 views (last 30 days)
I'm trying to use a for loop to create a 7x8 matrix that increases by 4 for each number (starting at 1).
So far I have something that goes
for
k = 1:8
a(k)=4*k;
end
just to create the first row... how would I go about adding more rows that keep adding increasing elements?

Accepted Answer

Image Analyst
Image Analyst on 7 Mar 2016
Try this:
theNumber = 1;
for col = 1 : 8
for row = 1 : 7
a(row, col) = theNumber;
theNumber = theNumber + 4;
end
end
  1 Comment
laura9510
laura9510 on 7 Mar 2016
Edited: laura9510 on 7 Mar 2016
I was going for increasing in the rows so I just switched the row/column. i.e.
theNumber = 1;
for row = 1:7
for col = 1:8
a(row, col) = theNumber;
theNumber = theNumber + 4;
end
end
Thanks for your help!! :)

Sign in to comment.

More Answers (0)

Categories

Find more on Argument Definitions 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!