i want to use while loop

5 次查看(过去 30 天)
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

采纳的回答

Sulaymon Eshkabilov
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 个评论
diadalina
diadalina 2023-1-7
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

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Numerical Integration and Differentiation 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by