bptrain.h
来自「使用循环神经网络和动态神经网络算法实现的综合股票分析预测程序」· C头文件 代码 · 共 38 行
H
38 行
// BpTrain.h: interface for the CBpTrain class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_BPTRAIN_H__8895E32B_E366_4C51_8CD4_3BCF0E9A6D00__INCLUDED_)
#define AFX_BPTRAIN_H__8895E32B_E366_4C51_8CD4_3BCF0E9A6D00__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#include <vector>
class CBpTrain
{
// Construction & destruction
public:
CBpTrain(const CString &strSampleName);
virtual ~CBpTrain();
//Implementation
private:
void OpenSample();
//attributes
private:
CString m_strSampleName;
typedef struct _Study_Data
{
std::vector<double> input;
std::vector<double> teach;
}Study_Data;
std::vector<Study_Data> m_vecStudyData;//学习样本
};
#endif // !defined(AFX_BPTRAIN_H__8895E32B_E366_4C51_8CD4_3BCF0E9A6D00__INCLUDED_)
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?