复仇之剑 发表于 2007-12-31 01:02

求关于m序列产生程序(要求产生序列波形)

%主函数
fbconnection=;%特征多项式
m=1;                     %输出周期个数
t=length(fbconnection);    %序列长度
chu=;      %初态
m_out=m_sequence(fbconnection,m,chu)

%m_sequence.m
function =m_sequence(fbconnection,m,chu)
len=length(fbconnection);
n=2^len-1;                %序列长度
register=chu;             %初态
fan=0;
for i=1:n*m               % i循环一次输出一个m_out
    m_out(i)=register(len);
    for k=1:len                  % k循环累加反馈
      fan=fan+fbconnection(k)*register(k);
    end
    fan=mod(fan,2);            % 反馈系数
    newregister(1)=fan;
    for j=2:len               % j循环移位
      newregister(j)=register(j-1);
    end
    register=newregister;
    fan=0;
end
本函数是论坛找到的虽然可以产生序列,但是我不知道怎样让他产生脉冲波形?课程设计急用!!谢谢大哥大姐,帮帮我!!

花如月 发表于 2007-12-31 13:52

什么样的脉冲波形?方波和三角波好像我给过,你找找看

复仇之剑 发表于 2007-12-31 14:12

是方波,主要是我不知道在主函数里加个plot的输出,我加了plot(i,m_out)
就说我Warning: Imaginary parts of complex X and/or Y arguments ignored.

花如月 发表于 2007-12-31 15:18

i和j默认的都是sqrt(-1)
页: [1]
查看完整版本: 求关于m序列产生程序(要求产生序列波形)