由于在matlab的'if'语句中包含'continue'语句而导致循环问题

时间:2019-02-26 14:44:14

标签: matlab matlab-guide

我有以下代码,这些代码在执行时将无限运行。如果我删除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循环。但是,控制器永远不会出来。我无法弄清楚代码出了什么问题。

1 个答案:

答案 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,以便更好地调试代码。