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

代码片段和文件信息
// 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个文件信息
- 上一篇:h264转mp4 VC代码
- 下一篇:.net连接DB2数据库编程简介
相关资源
- Wolfram Mathematica 矩阵初等变换函数(
- 模拟QQ登陆界面,按钮无效自己写
- 交通咨询模拟系统完整代码
- 卡西欧工程计算器模拟器Casio FX
- 旋转矩阵求欧拉角的简单算法
- S7-200模拟量编程实例
- 波浪模拟UDF程序
- 51模拟SPI读写SD卡(包括Fat和Fat32文件
- 三维重建(旋转)由已知对应图像点
- 矩阵基本运算函数库
- 分页系统模拟实验 操作系统 课程设
- 递归下降分析器分析普通的四则运算
- 课程作业:模拟仓库管理系统
- 一则可以随机产生四则运算的c程序!
- 模拟段页式虚拟存储管理中地址转换
- 大数的加减乘除求余运算
- STM32F103 CC2500完整驱动(模拟SPI)
- 报文模拟仿真测试工具2.0
- 模拟ATM柜员机系统--连接数据库
- CMOS两级运算放大器设计指导
- HOOK 记录和模拟 Keyboard Mouse
- 汇编语言编写的四则运算小程序
- 模拟首次适应动态分区存储管理方案
- 用矩阵类算法程序和最小二乘法
- 磁盘调度算法的模拟实现及对比
- 模拟一个文件管理系统
- 电梯模拟程序C/C 算法实现
- 图的邻接矩阵存储和邻接表存储
- 大数的四则运算和素性检测
- 计算机网络课程设计—ARQ协议模拟实
评论
共有 条评论