Matlab function solve number pattern

1 vue (au cours des 30 derniers jours)
amir zmn
amir zmn le 10 Jan 2021
Please some one help me in this number pattern How to write this code?
  1 commentaire
amir zmn
amir zmn le 10 Jan 2021
Check the image

Connectez-vous pour commenter.

Réponses (1)

Doddy Kastanya
Doddy Kastanya le 12 Jan 2021
The following code listing should do it (ignore the zeros in the output):
cnt=0;
for i=1:5
for j=1:i
cnt=cnt+1;
y(i,j)=cnt;
if cnt==12
break
end
end
end
y

Catégories

En savoir plus sur Matrices and Arrays dans Help Center et File Exchange

Produits

Community Treasure Hunt

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

Start Hunting!

Translated by