Creating matrix with incremental values

 Risposta accettata

KALYAN ACHARJYA
KALYAN ACHARJYA il 2 Giu 2019
Modificato: KALYAN ACHARJYA il 2 Giu 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);

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