⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 bptrain.h

📁 使用C++的基于神经网络(BP)算法的股票预测程序
💻 H
字号:
// 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -