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

📄 unitroot.m

📁 Neural Network in Finance (神经网络在金融界:赢得预言性的优势)全部原码。内容包括预测与估计
💻 M
字号:
function [alpha, talpha] = unitroot(ydata);
% Inputs:  ydata
% Ouputs: coefficient with no constant, coeff with constant, coeff with const and time
 [nrow, ncol] = size(ydata);
 ydep = diff(ydata);
 ydep = ydep(2:end,:);
 x = ydata(1:end-2,:);
 [nrow1, ncol] = size(ydep);
 time1 = 1:nrow1; time1 = time1'; 
for i = 1:ncol,
   [junk1, tjunk1] = ols1(x(:,i), ydep(:,i)); 
   alpha(1,i) = junk1(1); talpha(1,i) = tjunk1(1);
   [junk2, tjunk2] = ols1([x(:,i) ones(nrow1,1)],ydep(:,i));
   alpha(2,i) = junk2(1); talpha(2,i) = tjunk2(1);
   [junk3, tjunk3] = ols1([x(:,i) ones(nrow1,1) time1],ydep(:,i));
   alpha(3,i) = junk3(1); talpha(3,i) = tjunk3(1);
end
    
    
       

⌨️ 快捷键说明

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