资源简介
新做的矩阵运算器,支持自生成矩阵
支持加、减、乘、数乘、转置
代码片段和文件信息
// 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数据库编程简介
相关资源
- 电路与模拟电子技术答案 殷瑞祥主编
- 101规约源代码可模拟从站
- sjl06加密机模拟程序
- 蒙特卡洛方法模拟课件
- 大维随机矩阵的谱分析理论
- 矩阵理论及其应用 pdf高清电子版
- netapp存储模拟器部署安装
- xp下实现多点触控
- 低温等离子体放电模拟软件VORPAL
- sht20 程序
- 利用矩阵键盘控制51单片机LCD12864显示
- NPDP全真模拟题及各章节测试题
- 运放加法、减法、积分、微分Multisi
- 自动售货机模拟系统
- noip提高组模拟题
- Cisco Packet Tracer26个企业组网详解思科
- Accp4.0 y2考试的模拟题
- 声表面波器件模拟与仿真.pdf
- 湍流的模拟
- ARP攻击模拟工具 第二代
- 操作系统实验报告-大作业模拟文件系
- Peersim合集模拟器、源码、原理讲解
- 基于51单片机的TIM1控制蜂鸣器模拟电
- 512FFT Verilog源代码
- gps模块仿真52单片机+proteus模拟
- 应届生找工作+常见电子类硬件笔试题
- Qt实现的四则混合运算计算器
- 云南省一级B类考试模拟系统解压密码
- stm32模拟iic驱动bh1750
- 2019光环pmp一模拟考试及解析
评论
共有 条评论