⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 pngen.m

📁 is95系统的基带仿真程序。自己可以去调试
💻 M
字号:
function [y, Z] = PNGen(G, Zin, N);
%
% PN_GEN		This function generates the Pseudo Noise sequnece of length (N)
%				according to Generation Polynom and input state.
%
% 						Inputs: G - Generation Polynom
%                         Zin - Initial state of Shift register
%                         N - The length of PN sequence
%
% 						Outputs: y - The resulting PN sequence
%                          Z - The output state of Shift register
%

L = length(G);
Z = Zin;    % initialize input state of shift register

y = zeros(N, 1);
for i=1:N
   y(i) = Z(L);
   Z = xor(G*Z(L), Z);
   Z = [Z(L); Z(1:L-1)];
end   
%yy = filter(1, flipud(G), [1; zeros(N-1, 1)]);
%yy = mod(yy, 2);

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -