• 大小: 1.83MB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2023-09-21
  • 语言: 其他
  • 标签: 矩阵  运算  模拟  

资源简介

新做的矩阵运算器,支持自生成矩阵 支持加、减、乘、数乘、转置

资源截图

代码片段和文件信息

// Matrix.cpp : Defines the class behaviors for the application.
//

#include “stdafx.h“
#include “Matrix.h“
#include “MatrixDlg.h“

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

/////////////////////////////////////////////////////////////////////////////
// CMatrixApp

BEGIN_MESSAGE_MAP(CMatrixApp CWinApp)
//{{AFX_MSG_MAP(CMatrixApp)
// 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()

/////////////////////////////////////////////////////////////////////////////
// CMatrixApp construction

CMatrixApp::CMatrixApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}

/////////////////////////////////////////////////////////////////////////////
// The one and only CMatrixApp object

CMatrixApp theApp;

/////////////////////////////////////////////////////////////////////////////
// CMatrixApp initialization

BOOL CMatrixApp::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

CMatrixDlg 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;
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件     114784  2009-07-26 10:18  Matrix\Debug\Matrix.exe

     文件     339104  2009-07-26 10:18  Matrix\Debug\Matrix.ilk

     文件      15264  2009-07-26 10:15  Matrix\Debug\Matrix.obj

     文件    5488052  2009-07-25 10:16  Matrix\Debug\Matrix.pch

     文件     410624  2009-07-26 10:18  Matrix\Debug\Matrix.pdb

     文件       3364  2009-07-26 09:27  Matrix\Debug\Matrix.res

     文件      56060  2009-07-26 10:18  Matrix\Debug\MatrixDlg.obj

     文件     105873  2009-07-25 10:16  Matrix\Debug\StdAfx.obj

     文件     214016  2009-07-26 10:18  Matrix\Debug\vc60.idb

     文件     372736  2009-07-26 10:18  Matrix\Debug\vc60.pdb

     文件      37396  2009-07-26 09:24  Matrix\Matrix.aps

     文件       1692  2009-07-26 10:51  Matrix\Matrix.clw

     文件       2063  2009-07-24 22:10  Matrix\Matrix.cpp

     文件       4159  2009-07-24 22:10  Matrix\Matrix.dsp

     文件        537  2009-07-24 22:10  Matrix\Matrix.dsw

     文件       1324  2009-07-24 22:10  Matrix\Matrix.h

     文件      58368  2009-07-26 10:51  Matrix\Matrix.ncb

     文件      49664  2009-07-26 10:51  Matrix\Matrix.opt

     文件       1279  2009-07-26 10:18  Matrix\Matrix.plg

     文件       6701  2009-07-26 09:24  Matrix\Matrix.rc

     文件      10509  2009-07-26 10:18  Matrix\MatrixDlg.cpp

     文件       2000  2009-07-26 10:08  Matrix\MatrixDlg.h

     文件       3579  2009-07-24 22:10  Matrix\ReadMe.txt

     文件       1078  2009-07-24 22:10  Matrix\res\Matrix.ico

     文件        398  2009-07-24 22:10  Matrix\res\Matrix.rc2

     文件       1742  2009-07-25 10:11  Matrix\resource.h

     文件        208  2009-07-24 22:10  Matrix\StdAfx.cpp

     文件       1054  2009-07-24 22:10  Matrix\StdAfx.h

     目录          0  2009-07-26 10:18  Matrix\Debug

     目录          0  2009-07-24 22:10  Matrix\res

............此处省略4个文件信息

评论

共有 条评论