资源简介
该代码是用C++编写的小波人工神经网络,可实现小波神经网络的训练和预测。
代码片段和文件信息
// myrandplotestvc.cpp : 定义应用程序的类行为。
//
#include “stdafx.h“
#include “myrandplotestvc.h“
#include “myrandplotestvcDlg.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#endif
// CmyrandplotestvcApp
BEGIN_MESSAGE_MAP(CmyrandplotestvcApp CWinApp)
ON_COMMAND(ID_HELP &CWinApp::onhelp)
END_MESSAGE_MAP()
// CmyrandplotestvcApp 构造
CmyrandplotestvcApp::CmyrandplotestvcApp()
{
// 支持重新启动管理器
m_dwRestartManagerSupportFlags = AFX_RESTART_MANAGER_SUPPORT_RESTART;
// TODO: 在此处添加构造代码,
// 将所有重要的初始化放置在 InitInstance 中
}
// 唯一的一个 CmyrandplotestvcApp 对象
CmyrandplotestvcApp theApp;
// CmyrandplotestvcApp 初始化
BOOL CmyrandplotestvcApp::InitInstance()
{
// 如果一个运行在 Windows XP 上的应用程序清单指定要
// 使用 ComCtl32.dll 版本 6 或更高版本来启用可视化方式,
//则需要 InitCommonControlsEx()。否则,将无法创建窗口。
INITCOMMONCONTROLSEX InitCtrls;
InitCtrls.dwSize = sizeof(InitCtrls);
// 将它设置为包括所有要在应用程序中使用的
// 公共控件类。
InitCtrls.dwICC = ICC_WIN95_CLASSES;
InitCommonControlsEx(&InitCtrls);
CWinApp::InitInstance();
AfxEnableControlContainer();
// 创建 shell 管理器,以防对话框包含
// 任何 shell 树视图控件或 shell 列表视图控件。
CShellManager *pShellManager = new CShellManager;
// 标准初始化
// 如果未使用这些功能并希望减小
// 最终可执行文件的大小,则应移除下列
// 不需要的特定初始化例程
// 更改用于存储设置的注册表项
// TODO: 应适当修改该字符串,
// 例如修改为公司或组织名
SetRegistryKey(_T(“应用程序向导生成的本地应用程序“));
CmyrandplotestvcDlg dlg;
m_pMainWnd = &dlg;
INT_PTR nResponse = dlg.DoModal();
if (nResponse == IDOK)
{
// TODO: 在此放置处理何时用
// “确定”来关闭对话框的代码
}
else if (nResponse == IDCANCEL)
{
// TODO: 在此放置处理何时用
// “取消”来关闭对话框的代码
}
// 删除上面创建的 shell 管理器。
if (pShellManager != NULL)
{
delete pShellManager;
}
// 由于对话框已关闭,所以将返回 FALSE 以便退出应用程序,
// 而不是启动应用程序的消息泵。
return FALSE;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 98033 2015-02-02 16:00 myrandplotestvc\myrandplotestvc\mwcomtypes.h
文件 106012 2010-12-30 10:08 myrandplotestvc\myrandplotestvc\myrandplotestv.aps
文件 106972 2015-02-02 09:34 myrandplotestvc\myrandplotestvc\myrandplotestvc.aps
文件 2110 2010-12-30 09:28 myrandplotestvc\myrandplotestvc\myrandplotestvc.cpp
文件 496 2010-12-30 09:28 myrandplotestvc\myrandplotestvc\myrandplotestvc.h
文件 12902 2015-02-02 09:34 myrandplotestvc\myrandplotestvc\myrandplotestvc.rc
文件 6913 2015-02-02 09:39 myrandplotestvc\myrandplotestvc\myrandplotestvc.vcxproj
文件 2620 2015-02-02 09:39 myrandplotestvc\myrandplotestvc\myrandplotestvc.vcxproj.filters
文件 143 2010-12-30 09:28 myrandplotestvc\myrandplotestvc\myrandplotestvc.vcxproj.user
文件 6468 2015-02-03 17:22 myrandplotestvc\myrandplotestvc\myrandplotestvcDlg.cpp
文件 946 2015-02-02 09:39 myrandplotestvc\myrandplotestvc\myrandplotestvcDlg.h
文件 10779 2015-02-02 16:00 myrandplotestvc\myrandplotestvc\myrandplottest_idl.h
文件 2048 2015-02-02 16:00 myrandplotestvc\myrandplotestvc\myrandplottest_idl_i.c
文件 1332 2015-02-02 09:55 myrandplotestvc\myrandplotestvc\OutviewDlg.cpp
文件 488 2015-02-02 09:55 myrandplotestvc\myrandplotestvc\OutviewDlg.h
文件 3165 2010-12-30 09:28 myrandplotestvc\myrandplotestvc\ReadMe.txt
文件 67777 2009-08-31 02:31 myrandplotestvc\myrandplotestvc\res\myrandplotestvc.ico
文件 686 2010-12-30 09:28 myrandplotestvc\myrandplotestvc\res\myrandplotestvc.rc2
文件 2202 2015-02-02 09:34 myrandplotestvc\myrandplotestvc\resource.h
文件 148 2010-12-30 09:28 myrandplotestvc\myrandplotestvc\stdafx.cpp
文件 1632 2010-12-30 09:28 myrandplotestvc\myrandplotestvc\stdafx.h
文件 234 2010-12-30 09:28 myrandplotestvc\myrandplotestvc\targetver.h
文件 912 2010-12-30 09:28 myrandplotestvc\myrandplotestvc.sln
..A..H. 32768 2015-02-04 11:09 myrandplotestvc\myrandplotestvc.suo
目录 0 2015-03-17 09:06 myrandplotestvc\myrandplotestvc\res
目录 0 2015-03-17 09:06 myrandplotestvc\myrandplotestvc
目录 0 2015-03-17 09:07 myrandplotestvc
----------- --------- ---------- ----- ----
467786 27
............此处省略0个文件信息
- 上一篇:自制C++矩阵计算器
- 下一篇:算法题《武士巡逻》的C++代码
评论
共有 条评论