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

📄 bds.m

📁 Neural Network in Finance (神经网络在金融界:赢得预言性的优势)全部原码。内容包括预测与估计
💻 M
字号:
function c = bds(x,eps,m,format)
% usage: c = bds(x,eps,m,format)
%
% Detailed usage:
% bds(x,eps,m,format)
%
% x   = vector time series (n x 1)
% eps = epsilon in units of std of x
% m   = maxdim:  The maximum dimension, m, to estimate the statistic for.
%       BDS estimates will be done over the range 2-m
%
% format = 1 for normalized bds
% returns standardized stat distributed asymptotically N(0,1)
% c(2)/s(2), c(3)/s(3), c(4)s(4), .. c(m)/s(5)   where s(m) is the asymtotic std
%
% format = 2 for raw c(1), c(2), c(3)..., k
% raw c numbers with no normalization
%       (This is useful for bootstrapping distributions.)
%
%  Further information on BDS can be found in:

%
eps = eps*std(x);  % bds routines want raw epsilon
if nargin==4
   c = bdsc(x,eps,m,format);
else
   'Bad argument list'
end

⌨️ 快捷键说明

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