Creating matrix with incremental values

 Réponse acceptée

KALYAN ACHARJYA
KALYAN ACHARJYA le 2 Juin 2019
Modifié(e) : KALYAN ACHARJYA le 2 Juin 2019
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);

Plus de réponses (0)

Catégories

En savoir plus sur Loops and Conditional Statements dans Centre d'aide et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by