C++ ARMA method and regression analysis

风格不统一 提交于 2019-12-10 15:16:21

问题


Is there any C++ library that implements the ARMA method and possibly its variants? I'd be good to have a mature distribution for this kind of analysis.


回答1:


I am not aware of any native C++ library to compute ARMA models. However, if convenience is more important to you than raw performance, you can do it indirectly:

  • Use R to compute ARMA models
  • Use RCCP to link C++ to R (or vice versa)


来源:https://stackoverflow.com/questions/11272856/c-arma-method-and-regression-analysis

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!