登录
首页 » matlab » 非线性格兰杰因果关系代码

非线性格兰杰因果关系代码

于 2021-04-04 发布
0 221
下载积分: 1 下载次数: 13

代码说明:

说明:  该压缩包内为非线性格兰杰因果关系检验代码,欢迎大家下载(The compression package contains the non-linear Granger causality test code, welcome to download)

文件列表:

2006_GC_JEDC_c_and_exe_code\DP法论文.pdf, 263545 , 2019-07-07
2006_GC_JEDC_c_and_exe_code\GCtest C and MS Command Prompt\GCTtest.c, 7595 , 2012-10-06
2006_GC_JEDC_c_and_exe_code\GCtest C and MS Command Prompt\GCTtest.exe, 82944 , 2012-10-06
2006_GC_JEDC_c_and_exe_code\GCtest C and MS Command Prompt\instruction.pdf, 33407 , 2012-10-06
2006_GC_JEDC_c_and_exe_code\GCtest for Windows\GCtest-win.exe, 102400 , 2012-12-17
2006_GC_JEDC_c_and_exe_code\GCtest for Windows\in1.txt, 111672 , 2006-11-16
2006_GC_JEDC_c_and_exe_code\GCtest for Windows\in2.txt, 111672 , 2012-12-17
2006_GC_JEDC_c_and_exe_code\GCtest for Windows\libgcc_s_dw2-1.dll, 43008 , 2012-12-17
2006_GC_JEDC_c_and_exe_code\GCtest for Windows\mingwm10.dll, 11362 , 2012-12-17
2006_GC_JEDC_c_and_exe_code\GCtest for Windows\QtCore4.dll, 2847232 , 2012-12-17
2006_GC_JEDC_c_and_exe_code\GCtest for Windows\QtGui4.dll, 10137600 , 2012-12-17
2006_GC_JEDC_c_and_exe_code\GCtest for Windows\readme.txt, 1397 , 2012-12-19
2006_GC_JEDC_c_and_exe_code\公众信心与中国宏观经济波动的非线性因果关系研究_袁铭.pdf, 442688 , 2019-07-07
2006_GC_JEDC_c_and_exe_code\收入不平等_经济增长与碳排放关系的非线性_欧阳强.pdf, 359877 , 2019-07-07
2006_GC_JEDC_c_and_exe_code\GCtest C and MS Command Prompt, 0 , 2012-12-17
2006_GC_JEDC_c_and_exe_code\GCtest for Windows, 0 , 2012-12-19
2006_GC_JEDC_c_and_exe_code, 0 , 2019-07-07

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • equalization_RLS
    A pretty good equalization matlab code
    2009-09-22 20:27:41下载
    积分:1
  • VRP
    说明:  可用于求解物流配送路径优化问题,即vrp问题,算法采用的是蚁群算法(It can be used to solve the VRP Problem, which is an ant colony algorithm)
    2019-12-08 17:33:10下载
    积分:1
  • frftcodes
    matlab code for fourier tram
    2010-12-02 13:12:32下载
    积分:1
  • PSO(simple)
    说明:  一个动画模拟的粒子寻找最小值的一个简单程序,有助于学习粒子群法(an animated simulation of particles searching for the minima of a simple function,which helps you learn PSO. )
    2011-04-18 12:55:42下载
    积分:1
  • bp
    说明:  一个matlab写的bpANN程序,参数优化采用交叉验证办法.(Write a matlab bpANN process parameter optimization using cross-validation approach.)
    2011-09-25 12:33:18下载
    积分:1
  • GA-opf
    利用遗传算法解决电力系统最优潮流问题。程序opf1为最优潮流的模型建立部分,gaopf是主函数,求解最小燃料费用。(By using the genetic algorithm to solve the power system optimal power flow problem.Program opf1 for optimal power flow model is established in this part, gaopf is the main function, and solving the minimum fuel costs.)
    2021-03-23 19:49:15下载
    积分:1
  • MATLAB5
    小波分析尺度函数,样条数据处理,梁的有限元分析(Wavelet scaling function5)
    2011-12-20 19:03:16下载
    积分:1
  • calibration
    相机标定的matlab完整工具箱 功能非常强大(Complete toolbox matlab camera calibration is very powerful)
    2010-07-12 16:01:25下载
    积分:1
  • li9_23
    clear all I=imread( lena.bmp ) figure imshow(I) I2=imrotate(I,-4, bilinear ) 逆时针旋转4度 figure imshow(I2) I3=fliplr(I) 垂直镜像 figure imshow(I3) I4=imresize(I,0.5, bilinear ) 缩小为原图的1/2 figure imshow(I4) A=double(I) 转换为double类型 计算7个不变矩 [nc,nr]=size(A) [x,y]=meshgrid(1:nr,1:nc) 得到网格 x=x(:) y=y(:) A=A(:) m.m00=sum(A) if m.m00==0 m.m00=eps end m.m10=sum(x.*A) m.m01=sum(y.*A) 计算均值 xmean=m.m10/m.m00 ymean=m.m01/m.m00 计算中心矩(li9_23.rar cm.cm00=m.m00 cm.cm02=(sum((y-ymean).^2.*A))/(m.m00^2) cm.cm03=(sum((y-ymean).^3.*A))/(m.m00^2.5) cm.cm11=(sum((x-xmean).*(y-ymean).*A))/(m.m00^2) cm.cm12=(sum((x-xmean).*(y-ymean).^2.*A))/(m.m00^2.5) cm.cm20=(sum((x-xmean).^2.*A))/(m.m00^2) cm.cm21=(sum((x-xmean).^2.*(y-ymean).*A))/(m.m00^2.5) cm.cm30=(sum((x-xmean).^3.*A))/(m.m00^2.5) im(1)=cm.cm20+cm.cm02 im(2)=(cm.cm20-cm.cm02)^2+4*cm.cm11^2 im(3)=(cm.cm30-3*cm.cm12)^2+(3*cm.cm21-cm.cm03)^2 im(4)=(cm.cm30+cm.cm12)^2+(cm.cm21+cm.cm03)^2 im(5)=(cm.cm30-3*cm.cm12)*(cm.cm30+cm.cm12)... *((cm.cm30+cm.cm12)^2-3*(cm.cm21+cm.cm03)^2)... +(3*cm.cm21-cm.cm03)*(cm.cm21+cm.cm03)... +(3*(cm.cm30+cm.cm12)^2-(cm.cm21+cm.cm03)^2) im(6)=(cm.cm20-cm.cm02)*((cm.cm30+cm.cm12)^2-(cm.cm21+cm.cm03)^2)... +4*cm.cm11*(cm.cm30+cm.cm12)*(cm.cm21+cm.cm03) im(7)=(3*cm.cm21-cm.cm03)*(cm.cm30+cm.cm12)... *((cm.cm30+cm.cm12)^2-3*(cm.cm21+cm.cm03)^2)... +(3*cm.cm12-cm.cm30)*(cm.cm21+cm.cm03)... *()
    2010-10-17 21:53:14下载
    积分:1
  • matlab
    本课设完成的是任意信号卷积的运算,并且绘制图象.(For the completion of this lesson is that any signal of the convolution operator, and rendering images.)
    2009-05-22 09:49:05下载
    积分:1
  • 696518资源总数
  • 105877会员总数
  • 14今日下载