Neural Network program for pattern classification

源代码在线查看: data.cpp

软件大小: 5559 K
上传用户: xx87293767
关键词: classification Network program pattern
下载地址: 免注册下载 普通下载 VIP

相关代码

				// Data.cpp : implementation file
				//
				
				#include "stdafx.h"
				#include "PatternHW4.h"
				#include "Data.h"
				
				#ifdef _DEBUG
				#define new DEBUG_NEW
				#undef THIS_FILE
				static char THIS_FILE[] = __FILE__;
				#endif
				
				/////////////////////////////////////////////////////////////////////////////
				// Data
				
				IMPLEMENT_DYNCREATE(Data, CDocument)
				
				Data::Data()
				{
				}
				
				BOOL Data::OnNewDocument()
				{
					if (!CDocument::OnNewDocument())
						return FALSE;
					return TRUE;
				}
				
				Data::~Data()
				{
				}
				
				
				BEGIN_MESSAGE_MAP(Data, CDocument)
					//{{AFX_MSG_MAP(Data)
						// NOTE - the ClassWizard will add and remove mapping macros here.
					//}}AFX_MSG_MAP
				END_MESSAGE_MAP()
				
				/////////////////////////////////////////////////////////////////////////////
				// Data diagnostics
				
				#ifdef _DEBUG
				void Data::AssertValid() const
				{
					CDocument::AssertValid();
				}
				
				void Data::Dump(CDumpContext& dc) const
				{
					CDocument::Dump(dc);
				}
				#endif //_DEBUG
				
				/////////////////////////////////////////////////////////////////////////////
				// Data serialization
				
				void Data::Serialize(CArchive& ar)
				{
					if (ar.IsStoring())
					{
						// TODO: add storing code here
					}
					else
					{
						// TODO: add loading code here
					}
				}
				
				/////////////////////////////////////////////////////////////////////////////
				// Data commands
							

相关资源