资源简介
FCM是基本聚类算法,经过验证,此算法很很好的运行。对于初学聚类者来说,此算法很有用
代码片段和文件信息
// FCM.cpp : Defines the class behaviors for the application.
//
#include “stdafx.h“
#include “FCM.h“
#include “FCMDlg.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CFCMApp
BEGIN_MESSAGE_MAP(CFCMApp CWinApp)
//{{AFX_MSG_MAP(CFCMApp)
// NOTE - the ClassWizard will add and remove mapping macros here.
// DO NOT EDIT what you see in these blocks of generated code!
//}}AFX_MSG
ON_COMMAND(ID_HELP CWinApp::onhelp)
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CFCMApp construction
CFCMApp::CFCMApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}
/////////////////////////////////////////////////////////////////////////////
// The one and only CFCMApp object
CFCMApp theApp;
/////////////////////////////////////////////////////////////////////////////
// CFCMApp initialization
BOOL CFCMApp::InitInstance()
{
AfxEnableControlContainer();
// Standard initialization
// If you are not using these features and wish to reduce the size
// of your final executable you should remove from the following
// the specific initialization routines you do not need.
#ifdef _AFXDLL
Enable3dControls(); // Call this when using MFC in a shared DLL
#else
Enable3dControlsStatic(); // Call this when linking to MFC statically
#endif
CFCMDlg dlg;
m_pMainWnd = &dlg;
int nResponse = dlg.DoModal();
if (nResponse == IDOK)
{
// TODO: Place code here to handle when the dialog is
// dismissed with OK
}
else if (nResponse == IDCANCEL)
{
// TODO: Place code here to handle when the dialog is
// dismissed with Cancel
}
// Since the dialog has been closed return FALSE so that we exit the
// application rather than start the application‘s message pump.
return FALSE;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 20424 2011-05-22 14:29 c++写的fcm算法程序\FCM\FCM.APS
文件 1060 2011-06-01 14:20 c++写的fcm算法程序\FCM\FCM.clw
文件 2021 2002-07-13 10:21 c++写的fcm算法程序\FCM\FCM.cpp
文件 4105 2002-07-13 10:21 c++写的fcm算法程序\FCM\FCM.dsp
文件 529 2002-07-13 10:21 c++写的fcm算法程序\FCM\FCM.dsw
文件 1291 2002-07-13 10:21 c++写的fcm算法程序\FCM\FCM.h
文件 99328 2011-06-01 14:44 c++写的fcm算法程序\FCM\FCM.ncb
文件 240 2011-05-29 16:01 c++写的fcm算法程序\FCM\FCM.plg
文件 5216 2002-07-13 10:25 c++写的fcm算法程序\FCM\FCM.rc
文件 12680 2003-03-05 10:18 c++写的fcm算法程序\FCM\FCMDlg.cpp
文件 1627 2002-07-15 11:48 c++写的fcm算法程序\FCM\FCMDlg.h
文件 1495 2003-03-05 10:22 c++写的fcm算法程序\FCM\ReadMe.txt
文件 528 2002-07-13 10:21 c++写的fcm算法程序\FCM\Resource.h
文件 205 2002-07-13 10:21 c++写的fcm算法程序\FCM\StdAfx.cpp
文件 1056 2002-07-13 11:45 c++写的fcm算法程序\FCM\StdAfx.h
..A.SH. 162 2011-05-19 10:46 c++写的fcm算法程序\FCM\~$M聚类算法介绍.doc
文件 190 2002-08-10 17:07 c++写的fcm算法程序\FCM\data\center.txt
文件 36775 2002-08-10 17:07 c++写的fcm算法程序\FCM\data\datain.txt
文件 44384 2002-08-10 17:07 c++写的fcm算法程序\FCM\data\matrix.txt
文件 24 2002-08-10 17:07 c++写的fcm算法程序\FCM\data\paramOut.txt
文件 16 2011-05-29 16:01 c++写的fcm算法程序\FCM\Debug\center.txt
文件 114744 2011-05-21 19:45 c++写的fcm算法程序\FCM\Debug\FCM.exe
文件 208176 2011-05-21 19:45 c++写的fcm算法程序\FCM\Debug\FCM.ilk
文件 13677 2011-05-19 10:48 c++写的fcm算法程序\FCM\Debug\FCM.obj
文件 5483100 2011-05-19 10:48 c++写的fcm算法程序\FCM\Debug\FCM.pch
文件 287744 2011-05-19 10:49 c++写的fcm算法程序\FCM\Debug\FCM.pdb
文件 2452 2011-05-19 10:48 c++写的fcm算法程序\FCM\Debug\FCM.res
文件 0 2011-05-29 16:01 c++写的fcm算法程序\FCM\Debug\matrix.txt
文件 105550 2011-05-19 10:48 c++写的fcm算法程序\FCM\Debug\StdAfx.obj
文件 205824 2011-05-29 16:01 c++写的fcm算法程序\FCM\Debug\vc60.idb
............此处省略14个文件信息
- 上一篇:基于C6000系列DSP的C程序包
- 下一篇:简单实现的自适应算术编码
评论
共有 条评论