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循环。但是,控制器永远不会出来。我无法弄清楚代码出了什么问题。
答案 0 :(得分:0)
您正在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
,以便更好地调试代码。