如何用for循环重复功能?

时间:2010-11-10 00:47:13

标签: matlab

我正在尝试生成pn序列并且它可以正常工作。但是,当我尝试在for-loop中调用具有不同输入的函数时,每次都会给出相同的结果。好像它不受使用for循环的影响。为什么呢?

这是我的代码:

%e.g. noof flip flops 4 ==> 
function[op_seq]=pnseq(a,b,c)
a = 7;
%generator polynomial x4+x+1    ==> 
b = [1 0 0 1 1 0 1 ]
%initial state [1 0 0 0] ==> 
c = [1 0 0 0 1 0 1 ]
%refere figure to set a relation between tap function and initial state
%
for j= 1:50,
x = a;
tap_ff =b;
int_stat= c;
for i = 1:1: length(int_stat)
    old_stat(i) = int_stat(i);
    gen_pol(i) = tap_ff(i);
end
len = (2 ^x)-1;
gen_pol(i+1)= 1;
gen_l = length(gen_pol);
old_l = length(old_stat);
for i1 = 1: 1:len
    % feed back input genration
    t = 1;
    for i2 = 1:old_l
        if gen_pol(i2)==1
            stat_str(t) = old_stat(gen_l - i2);
            i2 = i2+1;
            t = t+1;
        else
            i2 = i2+1;
        end
    end
    stat_l = length(stat_str);
    feed_ip = stat_str(1);
    for i3 = 1: stat_l-1
        feed_ip = bitxor(feed_ip,stat_str(i3 + 1)); 
        feed_ipmag(i1) = feed_ip;
        i3 = i3+1;
    end
    % shifting elements
    new_stat = feed_ip;
    for i4 = 1:1:old_l
        new_stat(i4+1) = old_stat(i4);
        old_stat(i4)= new_stat(i4);
    end
    op_seq(i1) = new_stat(old_l +1);
end
%op_seq;
end

1 个答案:

答案 0 :(得分:0)

我假设您正在做类似的事情:

for n = 1:10
  ...
  % set a,b,c for this n
  ...
  op_seq =pnseq(a,b,c)
  ...
end

并且您看到每个案例的op_seq输出相同。这是因为您有a,b,c作为输入,但是在函数开始时覆盖它们。如果我删除或注释掉函数中的以下行:

a = 7;
b = [1 0 0 1 1 0 1 ]
c = [1 0 0 0 1 0 1 ]

然后,我使用不同的a,b,c调用函数得到不同的结果。您的函数中没有任何随机内容,因此相同的输入会提供相同的输出。