资源简介
空间面板计量的matlab代码;空间经济计量学主要研究存在空间效应的问题。空间效应主要包括空间相关和空间差异性。在研究中涉及空间相邻、空间相邻矩阵等概念。
代码片段和文件信息
function results = acf(xkp)
% PURPOSE: Estimate the coefficients of the autocorrelation
% (covariance with its own lagged value)
% function up to a particular lag {Xk = Cov[YtYt-k]}
%--------------------------------------------------------------
% USAGE: results = acf(xk)
% where: x = a time-series vector
% k = maximun lag considered
% p = Plot autocorrelations
% p = 1 Plot function
%--------------------------------------------------------------
% RETURNS: a results structure
% results.meth = ‘acf‘
% results.ac = autocorrelation coefficients
% results.k = dimension of the lag considered
% results.lowb = lower bound for 95% confidence interval
% results.Topb = Top bound for 95% confidence interval
% results.qstat = Ljung-Box Q Statistic
% results.prob = area under de chi^(2) distribution
% used in testing the existance of
% autocorrelation for the kth lag.
%
%--------------------------------------------------------------
% SEE ALSO:
%--------------------------------------------------------------
% References:
% * Judge G. Hill C. Griffiths W. L黷kepohl H. Tsoung-Chao L
% Introduction to the Theory and Practice of Econometrics
% 1988 pg. 681-690.
% * Hill C. Computer Handbook to Accompany Introduction to the Theory
% and Practice of Econometrics1988 pg. 158-159.
% error checking on inputs
results.meth= ‘acf‘;
if (nargin > 3)
error(‘Wrong # of arguments to acf‘);
elseif(nargin == 3)
p = 1;
elseif(nargin == 2)
p = 0;
else
k = round(rows(x)/4);
end;
if (cols(x) > 1)
error(‘acf cannot handle a matrix -- only vectors‘);
end;
nobs = rows(x);
results.k = k;
%center data
xc= x-mean(x);
%variance
v0= (xc‘*xc)/nobs; %not v0 = cov(x) see reference
for i=1:k
yt= xc(1:nobs-i1);
ytk= xc(1+i:nobs1);
ck = (yt‘*ytk)/nobs;
xk(i1)=ck/v0;
%ckbar = (yt‘*ytk)/(nobs-k);
%xkbar(k1)=ck/v0; %asymptotically equivalent to xk
end
results.ac=xk;
%Significance of xk (95% confidence intervals)
results.lowb= -2/sqrt(nobs)*ones(k1);
results.topb= 2/sqrt(nobs)*ones(k1);
%Diagnostics (Ljung & Box 1978) Q-Statistic
qstat=zeros(k+11);
for j=2:k+1
qstat(j1) = (xk(j-11)^2)/(nobs-(j-1))+ qstat(j-11);
prob(j1)= 1-chis_prb(abs((nobs*(nobs+2))*qstat(j1))j);
end
qstat=trimr((nobs*(nobs+2))*qstat10);
prob =trimr(prob10);
results.qstat=qstat;
results.prob=prob;
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 2631 2002-05-07 23:58 jplv7\coint\acf.m
文件 2736 2005-03-18 10:31 jplv7\coint\adf.m
文件 421 2009-01-24 10:48 jplv7\coint\adf_d.m
文件 2861 2000-10-09 00:00 jplv7\coint\cadf.m
文件 661 2001-04-20 10:04 jplv7\coint\cadf_d.m
文件 1935 2003-11-11 12:00 jplv7\coint\contents.html
文件 1497 2003-11-11 11:59 jplv7\coint\contents.m
文件 16526 2003-10-23 22:02 jplv7\coint\crthegy.m
文件 3042 2000-10-09 00:00 jplv7\coint\c_sja.m
文件 3523 2000-10-09 00:00 jplv7\coint\c_sjt.m
文件 1306 2000-10-09 00:00 jplv7\coint\detrend.m
文件 9004 2003-10-27 13:58 jplv7\coint\FinalConsumption.wk1
文件 9970 2003-10-27 13:48 jplv7\coint\hegy.m
文件 10461 2003-11-11 06:41 jplv7\coint\hegy.zip
文件 1754 2003-10-27 14:13 jplv7\coint\hegy_d.m
文件 6381 2001-02-18 09:54 jplv7\coint\johansen.m
文件 6382 2001-09-04 09:43 jplv7\coint\johansen.mbak
文件 851 2001-04-20 10:05 jplv7\coint\johansen_d.m
文件 4164 2000-10-09 00:00 jplv7\coint\make_html.m
文件 4033 2000-10-09 00:00 jplv7\coint\phillips.m
文件 1009 2001-04-20 10:05 jplv7\coint\phillips_d.m
文件 6124 2000-10-09 00:00 jplv7\coint\prt_coint.m
文件 1060 2000-10-09 00:00 jplv7\coint\ptrend.m
文件 13194 2000-10-09 00:00 jplv7\coint\rztcrit.m
文件 1003 2009-01-24 10:33 jplv7\coint\shenqiuadf.m
文件 22317 2000-10-09 00:00 jplv7\coint\test.dat
文件 6068 2000-10-09 00:00 jplv7\coint\ztcrit.m
文件 9128430 2003-12-14 01:23 jplv7\data\agriculture.dat
文件 2668 2003-12-14 01:59 jplv7\data\agriculture.txt
文件 1669 2000-10-09 21:06 jplv7\data\anselin.dat
............此处省略1175个文件信息
- 上一篇:matlab编写的有限元杆的计算
- 下一篇:基于matlab的手势识别系统
相关资源
- 基于matlab的手势识别系统
- matlab编写的有限元杆的计算
- 关于通过功率谱分析提取信号周期的
- 功率谱MATLAB程序
- 信息论大作业 LZ78算法编译码 matlab仿
- 语音增强—matlab
- 果蝇参数寻优FOA-LSSVM的完整程序
- MATLAB超声传感阵列仿真
- 利用WOA算法优化libsvm中SVDD算法的参数
- 跳频通信系统MATLAB仿真
- 蚁群算法实现三维路径规划Matlab源码
- UR5机械臂MATLAB下轨迹规划
- ViBe背景建模Matlab代码
- 机械臂SEA柔顺控制matlab仿真
- 基于MATLAB人民币识别系统.zip
- 科研常用代码预测分类评价
- 产生泊松过程Matlab源码
- 最优化算法规划-单纯形法MATLAB程序
- 基于KL变换的人脸识别 matlab
- 粒度端元分析的matlab程序m文件
- matlab二代身份证文字数字切割识别
- MATLAB代码经典功率谱估计Welch法协方差
- matlab实现的CCV颜色聚合向量
- 《MATLAB电机仿真精华50例》源代码
- 求解多旅行商(MTSP)的遗传算法的
- 基本粒子群算法,MATLAB文件的M文件编
- 数字图像处理作业canny边缘检测坎尼边
- 数字图像处理 MATLAB 大作业 代码及其
- 基于BP神经网络的无线传感器定位算法
- 字符识别matlab源代码
评论
共有 条评论