Creating matrix with incremental values

 Accepted Answer

using loops, you asked for.
mat1=[];
row_num=3; % Change the row number as per require
colm_num=3; % Change the col number as per require
count=0;
for i=1:row_num
for j=1:colm_num
count=count+1;
mat1(i,j)=count;
end
end
disp(mat1);

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!