ar1nv.m

来自「交互小波分析及其一致性分析」· M 代码 · 共 21 行

M
21
字号
function [g,a]=ar1nv(x)
% AR1NV - Estimate the parameters for an AR(1) model 
% Syntax: [g,a]=ar1nv(x);
%
% Input: x - a time series.
%
% Output: g - estimate of the lag-one autocorrelation.
%         a - estimate of the noise variance.

x=x(:);
N=length(x);
m=mean(x);
x=x-m;
 
% Lag zero and one covariance estimates:
c0=x'*x/N;
c1=x(1:N-1)'*x(2:N)/(N-1);

g=c1/c0;
a=sqrt((1-g^2)*c0);

⌨️ 快捷键说明

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