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

📄 sofmdview.h

📁 自组织特征映射 SOFM实现二维排序
💻 H
字号:
// SOFMDView.h : interface of the CSOFMDView class
//
/////////////////////////////////////////////////////////////////////////////

#if !defined(AFX_SOFMDVIEW_H__7C2ACB8C_40B3_46BE_B4A1_41D7AAE8B4D3__INCLUDED_)
#define AFX_SOFMDVIEW_H__7C2ACB8C_40B3_46BE_B4A1_41D7AAE8B4D3__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000


#include<stdlib.h>
# include <stdio.h>
# include <math.h>
# include <ctype.h>
# include <time.h>
# define m 8
# define n 2
//# define  M m*m
# define n 2
# define p  1000
# define T    500
#define  A    0.01
#define   Ng0   8

class CSOFMDView : public CView
{
protected: // create from serialization only
	CSOFMDView();
	DECLARE_DYNCREATE(CSOFMDView)

// Attributes
public:
	CSOFMDDoc* GetDocument();

// Operations
public:

// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CSOFMDView)
	public:
	virtual void OnDraw(CDC* pDC);  // overridden to draw this view
	virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
	protected:
	virtual BOOL OnPreparePrinting(CPrintInfo* pInfo);
	virtual void OnBeginPrinting(CDC* pDC, CPrintInfo* pInfo);
	virtual void OnEndPrinting(CDC* pDC, CPrintInfo* pInfo);
	//}}AFX_VIRTUAL

// Implementation
public:
	void initu();
	void initw();
	double W[n][m][m];
	double U[p][n];
	FILE *fp;
	void zuobiaozhou();
	virtual ~CSOFMDView();
#ifdef _DEBUG
	virtual void AssertValid() const;
	virtual void Dump(CDumpContext& dc) const;
#endif

protected:

// Generated message map functions
protected:
	//{{AFX_MSG(CSOFMDView)
	afx_msg void OnSofm();
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

#ifndef _DEBUG  // debug version in SOFMDView.cpp
inline CSOFMDDoc* CSOFMDView::GetDocument()
   { return (CSOFMDDoc*)m_pDocument; }
#endif

/////////////////////////////////////////////////////////////////////////////

//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.

#endif // !defined(AFX_SOFMDVIEW_H__7C2ACB8C_40B3_46BE_B4A1_41D7AAE8B4D3__INCLUDED_)

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -