i want to use while loop
2 views (last 30 days)
Show older comments
diadalina
on 6 Jan 2023
Commented: diadalina
on 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
0 Comments
Accepted Answer
Sulaymon Eshkabilov
on 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
More Answers (0)
See Also
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!