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

📄 fisherview.h

📁 fisher判别函数分类的实现
💻 H
字号:
// FisherView.h : interface of the CFisherView class
//
/////////////////////////////////////////////////////////////////////////////
#include <vector>
#include "constnum.h"
using namespace std;
#if !defined(AFX_FISHERVIEW_H__FA1CBB0E_3D33_46ED_9E73_7FDE5E9F6FFE__INCLUDED_)
#define AFX_FISHERVIEW_H__FA1CBB0E_3D33_46ED_9E73_7FDE5E9F6FFE__INCLUDED_

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

struct Kind
{
	float a[RDNUM][ITEMNUM];
	float m[ITEMNUM];
	float s[ITEMNUM][ITEMNUM];
	int num;
	int type;
};
struct TestPer
{
	float a[ITEMNUM];
	float b[ITEMNUM];
	int trueType;
	int testType;
};

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

// Attributes
public:
	CFisherDoc* GetDocument();

// Operations
public:

// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CFisherView)
	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:
	bool brinv(float a[],int n);
	bool LoadAnotherTestData();
	bool LoadAnotherTrainingdata();
	int errGrl;
	int errBoy;
	int errorCnt;
	void GetEvalueValue();
	void GetClassLabel();
	void ChangeTestData();
	float parValue;
	void GetParaValue();
	float proVtr[ITEMNUM];
	void GetProjectVector();
	bool GetReveMatrix();
	void GetTotalDiffer();
	void GetInnerDiffer(Kind & typePer);
	void GetMeanValue(Kind &typePer);
	void ChangeData();
	void LookAtData();
	bool LoadTestData();
	Kind girl;
	Kind boy;
	float avg[ITEMNUM];
	float square[ITEMNUM];
	vector<TestPer> vPr;
	double totalDiffer[ITEMNUM][ITEMNUM];
	double reveMatrix[ITEMNUM][ITEMNUM];
	bool LoadTrainingData();
	virtual ~CFisherView();
#ifdef _DEBUG
	virtual void AssertValid() const;
	virtual void Dump(CDumpContext& dc) const;
#endif

protected:

// Generated message map functions
protected:
	//{{AFX_MSG(CFisherView)
	afx_msg void OnTrainging();
	afx_msg void OnTestdata();
	afx_msg void OnAnothertraining();
	afx_msg void OnAnothertestdata();
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

#ifndef _DEBUG  // debug version in FisherView.cpp
inline CFisherDoc* CFisherView::GetDocument()
   { return (CFisherDoc*)m_pDocument; }
#endif

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

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

#endif // !defined(AFX_FISHERVIEW_H__FA1CBB0E_3D33_46ED_9E73_7FDE5E9F6FFE__INCLUDED_)

⌨️ 快捷键说明

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