1 Star 0 Fork 0

Hic/ARIMA

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
ARModel.h 597 Bytes
一键复制 编辑 原始数据 按行查看 历史
jsphLim 提交于 2018-03-18 23:13 . Update ARModel.h
//
// Created by yue on 18-3-16.
//
#ifndef ARMODEL_H
#define ARMODEL_H
#include <vector>
#include "ARMAMath.h"
class ARModel{
private:
std::vector<double> data;
int p;
public:
ARModel(std::vector<double> data,int p){
this->data.assign(data.begin(),data.end());
this->p=p;
}
std::vector<std::vector<double> > solveCoeOfAR(){
std::vector<std::vector<double> > vec;
ARMAMath ar_math;
std::vector<double> arCoe(ar_math.computeARCoe(this->data,this->p));
vec.push_back(arCoe);
return vec;
}
};
#endif //ARMODEL_H
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/hic_0757/ARIMA.git
git@gitee.com:hic_0757/ARIMA.git
hic_0757
ARIMA
ARIMA
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385