资源简介
本程序详细的实现了如何在VC下面调用Matlab函数进行三维绘图
代码片段和文件信息
// MATLABEngine.cpp : Defines the class behaviors for the application.
//
#include “stdafx.h“
#include “MATLABEngine.h“
#include “MATLABEngineDlg.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CMATLABEngineApp
BEGIN_MESSAGE_MAP(CMATLABEngineApp CWinApp)
//{{AFX_MSG_MAP(CMATLABEngineApp)
// 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()
/////////////////////////////////////////////////////////////////////////////
// CMATLABEngineApp construction
CMATLABEngineApp::CMATLABEngineApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}
/////////////////////////////////////////////////////////////////////////////
// The one and only CMATLABEngineApp object
CMATLABEngineApp theApp;
/////////////////////////////////////////////////////////////////////////////
// CMATLABEngineApp initialization
BOOL CMATLABEngineApp::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
CMATLABEngineDlg 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;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 35524 2009-03-31 17:28 MATLABEngine\MATLABEngine.aps
文件 1169 2009-04-01 15:43 MATLABEngine\MATLABEngine.clw
文件 2147 2009-03-31 17:17 MATLABEngine\MATLABEngine.cpp
文件 4398 2009-03-31 20:59 MATLABEngine\MATLABEngine.dsp
文件 547 2009-03-31 17:17 MATLABEngine\MATLABEngine.dsw
文件 1390 2009-03-31 17:17 MATLABEngine\MATLABEngine.h
文件 50176 2009-04-01 15:43 MATLABEngine\MATLABEngine.ncb
文件 54784 2009-04-01 15:43 MATLABEngine\MATLABEngine.opt
文件 258 2009-04-01 15:42 MATLABEngine\MATLABEngine.plg
文件 5273 2009-03-31 17:28 MATLABEngine\MATLABEngine.rc
文件 5972 2009-04-01 15:42 MATLABEngine\MATLABEngineDlg.cpp
文件 1443 2009-03-31 17:28 MATLABEngine\MATLABEngineDlg.h
文件 3687 2009-03-31 17:17 MATLABEngine\ReadMe.txt
文件 1078 2009-03-31 17:17 MATLABEngine\res\MATLABEngine.ico
文件 404 2009-03-31 17:17 MATLABEngine\res\MATLABEngine.rc2
..A.SH. 3584 2009-03-31 20:39 MATLABEngine\res\Thumbs.db
目录 0 2009-03-31 20:39 MATLABEngine\res
文件 690 2009-03-31 17:28 MATLABEngine\resource.h
文件 214 2009-03-31 17:17 MATLABEngine\StdAfx.cpp
文件 1054 2009-03-31 17:17 MATLABEngine\StdAfx.h
目录 0 2009-04-01 15:43 MATLABEngine
----------- --------- ---------- ----- ----
173792 21
相关资源
- C++MFC物资管理系统源码.zip
- vc++6.0 mfc 关于播放.AVI格式的文件源代
- mfc 课程设计 view 浏览器 收藏夹
- MFC绘图小程序可以拖动哦
- 基于vc的mfc手柄遥控上位机Joy_Send步骤
- MFC必用的CwImage库
- matlab2016b配置VS2017编译器mexopts补丁文
- MFC简单mp3播放器
- MFC实现图形放大缩小
- mfc的父子窗体调用
- MFC GDI+练手学习
- L1范数最小化算法matlab代码(修改过可
- mfc 走样反走样时钟
- MFC 用SOCKET实现图片分包传送和接收并
- MFC可视化信息管理系统简单的程序,
- 基于VC的MFC计算器
- YUV播放器directXVS2008 MFC完成
- VC 2015 MFC 图片列表ListCtrl
- MFC读取txt,分割显示到listctrl控件上
- 测试网速和延迟的MFC 前期代码
- 网速监控 v1.2 MFC VC C++ 网速监控 线程
- MFC绘图小程序源代码
- VC++ MFC入门精讲.PPT
- 质子交换膜燃料电池PEMFC仿真模型
- 相机标定棋盘
- TCP/IP聊天室群聊MFC版
- 吕鑫VS2015之C.C++.MFC完整视频
- MFC下CSocket编程详解代码
- Windows平台下的图形化的Ping工具基于
- MFC读写CSV文件
评论
共有 条评论