gaus_mar.m

来自「第四版prokias著的数字通信配套matlab之第2章」· M 代码 · 共 13 行

M
13
字号
function [X]=gaus_mar(X0,rho,N)
% [X]=gaus_mar(X0,rho,N)
%       GAUS_MAR  generates a Gauss-Markov process of length N.
%           The noise process is taken to be white Gaussian
%           noise with zero mean and unit variance.
for i=1:2:N,
  [Ws(i) Ws(i+1)]=gngauss;        % Generate the noise process.
end;
X(1)=rho*X0+Ws(1);                % first element in the Gauss--Markov process
for i=2:N,
  X(i)=rho*X(i-1)+Ws(i);          % the remaining elements
end;

⌨️ 快捷键说明

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