本文介绍了C ++ ARMA方法和回归分析的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
有没有实现ARMA方法和可能的其变体的任何C ++库?
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.
推荐答案
我不知道任何原生的C ++库以计算ARMA模型。但是,如果方便对于您而言比原始性能更重要,您可以间接做到:
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:
- 使用计算模型
- 使用将C ++链接到R(或者
反向)
- Use R to compute ARMA models
- Use RCCP to link C++ to R (or viceversa)
这篇关于C ++ ARMA方法和回归分析的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!