最近刚好使用这个Arfima package 1.0 for Ox来学习arfima模型。碰到了不少问题,有很多暂时不明白的问题,欢迎大家进来一起讨论。
 主要可以学习的资料来自
 A Package for Estimating, Forecasting and Simulating Arfima Models: Arfima package 1.0 for Ox BY JURGEN A.DOORNIK AND MARIUS OOMS
 在学习的过程遇到了很多问题,期待着大家的帮助。
 问题1.
 当我想把Arfima in OxPack和givewin结合起来使用时,
 完全按照上面说明文章中描写的那样,
 Installing Arfima in OxPack for GiveWin
 Installation of the interactive version of Arfima:
(1) Install Arfima into ox/packages/arfima as described above.
(2) Install OxPack for GiveWin OxPack
requires a properly installed GiveWin version 1.20 or later. Check the version number in the GiveWin Help
menu.
(3) Start GiveWin, and then OxPack from the GiveWin Modules menu. From the OxPack Package menu
Choose Add/Remove Package. Locate arfima.oxo (in the arfima folder) using the Browse button, and
press Add
 在第(3)步,我强行将arfima.oxo加入到了givewin的Modules 中,但是,一运行就弹出failed的对话框。
 实在不知道到底是哪里出了问题?不知道各位高手有没有碰到这样的类似问题???
 上面问题是由于我安装的ox的版本问题,安装了ox 3.4以后,问题已经解决!
 问题2
 以下是最近几天使用OX软件包过程遇到的一些问题,欢迎大家一起讨论。
 1,关于软件包中,ArfimaSim的使用,现在我还不明白用这个函数如何产生一个ARFIMA(p,d,q)序列,
 decl exp;
 exp = new ArfimaSim(<100>, 0, 1, 0.3, <0.3, 0.4>, <.5, 0.31>,
 TRUE, 1, 0, 100, M_MAXLIK);
 exp->Simulate();
 print(exp);
 当我采用这些语句时,看到结果中有一个,m_mData的数据成员,??怀疑这个就是仿真出来的数据?
 但是当我想把
 decl data=exp.m_mData;(orexp-〉m_mData)都不能输出产生的数据,总是报一个不能访问这个成员的错请高手指点。。
 [此贴子已经被作者于2006-12-18 19:39:58编辑过]