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

📄 ar1noise.m

📁 交互小波分析及其一致性分析
💻 M
字号:
  function X=ar1noise(n,c,g,a)
% AR1NOISE - Generate zero-mean red noise.
% Syntax: X=ar1noise(n,c,g,a);
%
% Inputs: n - desired length of time series
%         c - number of time series to generate
%         g - lag-1 autocorrelation
%         a - noise innovation variance parameter
% 
% Output: X - n by c matrix of red noise series.
%
% Written by Eric Breitenberger.      Version 1/21/96
% Please send comments and suggestions to eric@gi.alaska.edu       
%

% Comment out this line if you want the
% same 'random' realization each time:
randn('state',fix(sum(100*clock*(randn+4))));

X=zeros(n,c);
X(1,:)=sqrt(a^2/(1-g^2))*randn(1,c);
z=a*randn(n,c);

for i=2:n
  X(i,:)=g*X(i-1,:)+z(i,:);
end

% Center the surrogates:
X=X-ones(n,1)*mean(X);

⌨️ 快捷键说明

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