📄 matrixdlg.h
字号:
// MatrixDlg.h : header file
//
#if !defined(AFX_MATRIXDLG_H__2680217D_B57F_4C4D_AC92_1130E0347921__INCLUDED_)
#define AFX_MATRIXDLG_H__2680217D_B57F_4C4D_AC92_1130E0347921__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
/////////////////////////////////////////////////////////////////////////////
// CMatrixDlg dialog
class CMatrixDlg : public CDialog
{
// Construction
public:
float* Calculate(float **a,float **b,int m,int n);
float* lu(float **u,int m,int n);
void adding(float **ata,float **atb,int m,int n);
void MatrixMultipleA(float **at,float **b,int m,int n);
void MatrixMultiple(float **at,float **a,int m,int n);
void MatrixInver(float **a,int m,int n);
void FreeMatrix();
void InitMatrix(int m,int n);
CMatrixDlg(CWnd* pParent = NULL); // standard constructor
// Dialog Data
//{{AFX_DATA(CMatrixDlg)
enum { IDD = IDD_MATRIX_DIALOG };
int m_h;
int m_l;
//}}AFX_DATA
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CMatrixDlg)
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
//}}AFX_VIRTUAL
// Implementation
protected:
HICON m_hIcon;
// Generated message map functions
//{{AFX_MSG(CMatrixDlg)
virtual BOOL OnInitDialog();
afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
afx_msg void OnPaint();
afx_msg HCURSOR OnQueryDragIcon();
afx_msg void OnReadConst();
afx_msg void OnCalculate();
afx_msg void OnReadMatrix();
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
#endif // !defined(AFX_MATRIXDLG_H__2680217D_B57F_4C4D_AC92_1130E0347921__INCLUDED_)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -