循环问题,因为matlab中'if'语句中的'continue'语句[关闭]
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了循环问题,因为matlab中'if'语句中的'continue'语句[关闭]相关的知识,希望对你有一定的参考价值。
我有以下代码,执行时无限运行。如果我删除CONTINUE语句就可以了。但是,使用CONTINUE语句会出现问题。代码是
Bn_x=zeros (length(pu_arrival), 1); Bn_x(1)=6;
Br_x=zeros (length(pu_arrival), 1); Br_x(1)=2;
jn1= zeros (length(pu_arrival), 1); jn1(1)=3;
in=zeros (length(pu_arrival), 1);
jn2= zeros (length(pu_arrival), 1); jn2(1)=3;
jr1=zeros (length(pu_arrival), 1); jr1(1)=1;
ir=zeros (length(pu_arrival), 1);
jr2=zeros (length(pu_arrival), 1); jr2(1)=1;
numb_chan_idle_N=0;
numb_chan_idle_R=0;
for i=2:24 %length(pu_arrival)
if rem(i,2)==0
[Bn_x,Br_x]=failure3(numb_chan_idle_N,numb_chan_idle_R,in,jn1,jn2,ir,jr1,jr2,Bn_x,Br_x,i);
continue
end
end
%%%%%%%%被调用的函数%%%%%%%%%%%%
function [Bn_x,Br_x] =failure3(numb_chan_idle_N,numb_chan_idle_R,in,jn1,jn2,ir,jr1,jr2,Bn_x,Br_x,i)
temp=0;
while temp<1
x=randi([1 6]);
if x==1
if in(i-1)>0
temp=temp+1;
end
elseif x==2
y=randi([1 2]);
if y==1
if jn1(i-1)>0
temp=temp+1;
end
elseif y==2
if jn2(i-1)>0
temp=temp+1;
end
end
elseif x==3
if ir(i-1)>0
end
elseif x==4
y=randi([1 2]);
if y==1
if jr1(i-1)>0
temp=temp+1;
end
elseif y==2
if jr2(i-1)>0
temp=temp+1;
jr2(i)=jr2(i-1)-1;
Br_x(i)=Br_x(i-1)-1;
else
fprintf('JR2 destined to fail but it is already=%d\n', jr2(i-1))
continue
end
end
elseif x==5
if numb_chan_idle_N>0
temp=temp+1;
end
elseif x==6
if numb_chan_idle_R>0
temp=temp+1;
end
end
end
end
我希望控制器在IF条件满足并且其内部语句执行后返回FOR循环。但是,控制器永远不会出来。我无法弄清楚代码有什么问题。
答案
你在fault3
中生成无限循环,continue语句按预期工作,代码永远不会到达它。
在您给出的代码中,只有某些依赖于输入的条件会导致temp=temp+1
,这是退出failure3
的必要条件。有一些数字组合(例如你提供的数字组合)永远不会触发if
中的任何failure3
条件,因此永远不会退出。
您可以通过在代码中添加以下内容来轻松查看:
function [Bn_x,Br_x] =failure3(numb_chan_idle_N,numb_chan_idle_R,in,jn1,jn2,ir,jr1,jr2,Bn_x,Br_x,i)
temp=0;
iteration = 0
while temp<1
iteration=iteration +1
...
failure3
背后的逻辑被打破了。在任何情况下,每当你有一个无限循环while temp<1
时,尝试添加一个额外的语句,如while temp<1 && iteration<500
,这样你就可以更好地调试代码。
以上是关于循环问题,因为matlab中'if'语句中的'continue'语句[关闭]的主要内容,如果未能解决你的问题,请参考以下文章
matlab中的solve函数可以和for函数一起用吗?因为有五个式子