Filter löschen
Filter löschen

i want to use while loop

5 Ansichten (letzte 30 Tage)
diadalina
diadalina am 6 Jan. 2023
Kommentiert: diadalina am 7 Jan. 2023
can anyone help to convert this code to the while loop :
n=5;
for i=1:n
for j=1:n
if i+j-1>n
H(i,j)=0;
else
H(i,j)=i+j-1;
end
end
end
H
H = 5×5
1 2 3 4 5 2 3 4 5 0 3 4 5 0 0 4 5 0 0 0 5 0 0 0 0

Akzeptierte Antwort

Sulaymon Eshkabilov
Sulaymon Eshkabilov am 6 Jan. 2023
Here is the version of your code with the [while... end] operation:
n=5;
i=1;
while i<=n
j=1;
while j<=n
if i+j-1>n
H(i,j)=0;
else
H(i,j)=i+j-1;
end
j=j+1;
end
i=i+1;
end
H
H = 5×5
1 2 3 4 5 2 3 4 5 0 3 4 5 0 0 4 5 0 0 0 5 0 0 0 0
  1 Kommentar
diadalina
diadalina am 7 Jan. 2023
thank you so much here an other way to solve my problem :
n=5;
i=0;
H=zeros(n);
while i<=n
j=0;
i=i+1;
while j<=n
j=j+1;
if i+j-1<=n
H(i,j)=i+j-1 ;
end
end
end

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Community Treasure Hunt

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

Start Hunting!

Translated by