在好例子网,分享、交流、成长!
您当前所在位置:首页C/C++ 开发实例C/C++语言基础 → 【随书源码】《精通Matlab与c/c++混合程序设计》第二版,刘维

【随书源码】《精通Matlab与c/c++混合程序设计》第二版,刘维

C/C++语言基础

下载此实例
  • 开发语言:C/C++
  • 实例大小:30.30M
  • 下载次数:13
  • 浏览次数:102
  • 发布时间:2023-04-20
  • 实例类别:C/C++语言基础
  • 发 布 人:js2021
  • 文件格式:.zip
  • 所需积分:2
 相关标签: MATLAB C/C++ 程序设计 c++ LAB

实例介绍

【实例简介】【随书源码】《精通Matlab与c/c 混合程序设计》第二版,刘维

本书是matlab和c/c 混合编程国内比较流行的一本书。

【实例截图】

from clipboard

【核心代码】
文件清单.
├── __MACOSX
│   └── 精通Matlab与C和Cpp混合程序设计第2版源代码光盘
│       ├── 第1章
│       ├── 第2章
│       │   └── testmexvc
│       │       └── testmexvc___Win32_Debug
│       ├── 第3章
│       │   ├── C中调用Matlab函数
│       │   │   ├── 1
│       │   │   │   └── bin
│       │   │   └── bin
│       │   ├── M文件中调用C语言函数
│       │   │   ├── bin
│       │   │   └── no persistent
│       │   ├── flames
│       │   │   └── bin
│       │   ├── 采用CreateProcess和FindWindows结合
│       │   │   └── testconsole
│       │   │       ├── Debug
│       │   │       ├── bin
│       │   │       └── res
│       │   ├── 采用Winmain代替Main
│       │   │   └── ball
│       │   │       ├── Debug
│       │   │       └── bin
│       │   └── 将输出改到Windows窗口上
│       │       └── testredirectoutput
│       │           ├── Debug
│       │           │   └── plotrand
│       │           │       └── bin
│       │           ├── plotrand
│       │           │   └── bin
│       │           └── res
│       ├── 第4章
│       │   ├── VC 中调用Matlab  .m函数编译后的动态链接库
│       │   │   ├── m
│       │   │   │   └── bin
│       │   │   └── testsincplot_dll
│       │   │       ├── Debug
│       │   │       └── res
│       │   ├── VC 中调用Matlab .m函数编译后的对应c函数
│       │   │   ├── m
│       │   │   └── testsincplot
│       │   │       └── Debug
│       │   └── matlabenginetest
│       │       ├── Debug
│       │       └── res
│       ├── 第5章
│       │   ├── 实例1
│       │   │   └── Debug
│       │   ├── 实例2
│       │   │   ├── Debug
│       │   │   └── res
│       │   ├── 实例3
│       │   │   ├── Debug
│       │   │   └── res
│       │   ├── 实例4
│       │   │   ├── Debug
│       │   │   └── res
│       │   └── 实例5
│       │       ├── Debug
│       │       └── res
│       ├── 第6章
│       │   ├── MWSparseMaxtrix
│       │   │   ├── VC
│       │   │   │   └── Debug
│       │   │   ├── distrib
│       │   │   ├── mfiles
│       │   │   └── src
│       │   ├── MWStruct
│       │   │   ├── VC
│       │   │   │   ├── MWStruct和MWField操作实例
│       │   │   │   │   ├── Debug
│       │   │   │   │   └── structfiles
│       │   │   │   │       ├── distrib
│       │   │   │   │       └── src
│       │   │   │   └── structcombine
│       │   │   ├── comtools
│       │   │   │   ├── distrib
│       │   │   │   └── src
│       │   │   └── mfiles
│       │   │       └── bin
│       │   ├── arraypass
│       │   │   ├── VC
│       │   │   │   ├── complexarray
│       │   │   │   │   └── arraycomplex
│       │   │   │   │       └── Debug
│       │   │   │   └── realarray
│       │   │   │       └── Debug
│       │   │   ├── arraycom
│       │   │   │   ├── distrib
│       │   │   │   └── src
│       │   │   └── mfiles
│       │   ├── cell_or_matrix
│       │   │   ├── VC
│       │   │   │   └── Debug
│       │   │   └── mfiles
│       │   │       ├── distrib
│       │   │       └── src
│       │   └── mwpack_mwunpack
│       │       ├── VC
│       │       │   └── Debug
│       │       ├── distrib
│       │       ├── mfiles
│       │       └── src
│       └── 第7章
│           ├── 7.3.1
│           │   ├── 1. 直接输出到屏幕
│           │   │   └── Debug
│           │   └── 2. Matlab mwArray阵列数据的输入和输出的其他方式
│           │       └── Debug
│           └── 7.3.2
│               ├── 1. 创建Matlab mwArray阵列的操作
│               │   └── Debug
│               ├── 2. 采用Matlab C 数学库对稀疏矩阵的操作
│               │   └── Debug
│               ├── 3. Matlab C 数学库对字符型阵列的操作
│               │   └── Debug
│               ├── 4. Matlab C 数学库对元组阵列的操作
│               │   └── Debug
│               ├── 5. Matlab C 数学库对结构阵列的操作
│               │   └── Debug
│               ├── 6.访问mwArray类中的数据
│               │   └── Debug
│               ├── 7. Matlab C 数学库对Matlab阵列操作常用的小技巧
│               │   └── src
│               │       └── Debug
│               └── 8. 调用系统函数
│                   └── mwCallFunction
├── 精通Matlab与C和Cpp混合程序设计第2版源代码光盘
│   ├── 第1章
│   │   ├── 1-1.tif
│   │   ├── 1-1_1.tif
│   │   ├── 1-5.tif
│   │   ├── 1.m.bak
│   │   ├── 1_6.tif
│   │   ├── Water lilies.bmp
│   │   ├── processgrayimage.m
│   │   ├── processgrayimage.m.bak
│   │   ├── testcell.m
│   │   ├── testfor.m
│   │   ├── testfor.m.bak
│   │   ├── testif.m
│   │   ├── testif.m.bak
│   │   ├── testnarin_out.m
│   │   ├── testnarin_out.m.bak
│   │   ├── testoperator.m
│   │   ├── testoperator.m.bak
│   │   ├── testrepmat.m
│   │   ├── testscript.m
│   │   ├── testscript.m.bak
│   │   ├── teststring.m
│   │   ├── teststruct.m
│   │   └── 新建 文本文档.txt.bak
│   ├── 第2章
│   │   ├── 2_1.tif
│   │   ├── abc.mat
│   │   ├── abc1.mat
│   │   ├── abcd.mat
│   │   ├── helloworld.c
│   │   ├── image3d.m
│   │   ├── matreadmxArray.c
│   │   ├── mattest.mat
│   │   ├── matwritemxArray.c
│   │   ├── mexEvalString.c
│   │   ├── mexGetString.c
│   │   ├── mexGetString.c.bak
│   │   ├── mexatexit.c
│   │   ├── mexcallmatlab.c
│   │   ├── mexfunctionname.c
│   │   ├── mexget.c
│   │   ├── mexhello.dll
│   │   ├── mexhelloc.c.bak
│   │   ├── mexmakepersist.c
│   │   ├── mxCreateCharMatrixFromString.c
│   │   ├── mxshowsparsematrix.c
│   │   ├── mxshowstring.c
│   │   ├── phonebook.c
│   │   ├── phonebook.mat
│   │   ├── setalloc.c
│   │   ├── setalloc.c.bak
│   │   ├── showarray.c
│   │   ├── showarray.c.bak
│   │   ├── showarray.dll
│   │   ├── showcell.c
│   │   ├── showmatrix.c
│   │   ├── showstruct.c
│   │   └── testmexvc
│   │       ├── Debug
│   │       ├── mcc-files.txt
│   │       ├── mcc-files.txt.bak
│   │       ├── mcc-log.txt
│   │       ├── mcc.mak
│   │       ├── mcc.opt
│   │       ├── readme.txt
│   │       ├── testmexvc.dll
│   │       ├── testmexvc.dsp
│   │       ├── testmexvc.dsp.org
│   │       ├── testmexvc.dsp.tmp
│   │       ├── testmexvc.dsw
│   │       ├── testmexvc.exp
│   │       ├── testmexvc.ilk
│   │       ├── testmexvc.lib
│   │       ├── testmexvc.ncb
│   │       ├── testmexvc.opt
│   │       ├── testmexvc.pdb
│   │       ├── testmexvc.plg
│   │       ├── testmexvc___Win32_Debug
│   │       │   ├── testmexvc.obj
│   │       │   ├── testmexvc.pch
│   │       │   ├── vc60.idb
│   │       │   └── vc60.pdb
│   │       └── testmexvc_master.rsp
│   ├── 第3章
│   │   ├── C中调用Matlab函数
│   │   │   ├── 1
│   │   │   │   ├── bin
│   │   │   │   │   ├── FigureMenuBar.fig
│   │   │   │   │   └── FigureToolBar.fig
│   │   │   │   ├── mrandplot.c
│   │   │   │   ├── mrandplot.h
│   │   │   │   ├── mrandplotlib.c
│   │   │   │   ├── mrandplotlib.exports
│   │   │   │   ├── mrandplotlib.h
│   │   │   │   ├── mrandplotlib.mlib
│   │   │   │   ├── mrandwin.c
│   │   │   │   └── mrandwin.exe
│   │   │   ├── bin
│   │   │   │   ├── FigureMenuBar.fig
│   │   │   │   └── FigureToolBar.fig
│   │   │   ├── mrandplot.c
│   │   │   ├── mrandplot.h
│   │   │   ├── mrandplot.m
│   │   │   ├── mrandplotlib.c
│   │   │   ├── mrandplotlib.exports
│   │   │   ├── mrandplotlib.h
│   │   │   ├── mrandplotlib.mlib
│   │   │   └── mrandwin.c
│   │   ├── M文件中调用C语言函数
│   │   │   ├── bin
│   │   │   │   ├── FigureMenuBar.fig
│   │   │   │   └── FigureToolBar.fig
│   │   │   ├── getdata.c
│   │   │   ├── getdata.h
│   │   │   ├── getdata.m
│   │   │   ├── getdata.m.bak
│   │   │   ├── getdata_external.c
│   │   │   ├── getdata_external.c.bak
│   │   │   ├── getdata_external.h
│   │   │   ├── no persistent
│   │   │   │   ├── getdata.c
│   │   │   │   ├── getdata.h
│   │   │   │   ├── getdata.m
│   │   │   │   ├── getdata_external.h
│   │   │   │   ├── showdata.c
│   │   │   │   ├── showdata.h
│   │   │   │   ├── showdata.m
│   │   │   │   └── showdata_mainhg.c
│   │   │   ├── showdata.c
│   │   │   ├── showdata.exe
│   │   │   ├── showdata.h
│   │   │   ├── showdata.m
│   │   │   ├── showdata.m.bak
│   │   │   └── showdata_mainhg.c
│   │   ├── flames
│   │   │   ├── bin
│   │   │   │   ├── FigureMenuBar.fig
│   │   │   │   └── FigureToolBar.fig
│   │   │   ├── flames.c
│   │   │   ├── flames.exe
│   │   │   ├── flames.h
│   │   │   ├── flames.m
│   │   │   ├── flames.mat
│   │   │   ├── flames_mainhg.c
│   │   │   ├── hot.c
│   │   │   └── hot.h
│   │   ├── 采用CreateProcess和FindWindows结合
│   │   │   └── testconsole
│   │   │       ├── Debug
│   │   │       │   ├── plotsin.exe
│   │   │       │   └── testconsole.exe
│   │   │       ├── ReadMe.txt
│   │   │       ├── Resource.h
│   │   │       ├── StdAfx.cpp
│   │   │       ├── StdAfx.h
│   │   │       ├── bin
│   │   │       │   ├── FigureMenuBar.fig
│   │   │       │   └── FigureToolBar.fig
│   │   │       ├── plotsin.exe
│   │   │       ├── res
│   │   │       │   ├── testconsole.ico
│   │   │       │   └── testconsole.rc2
│   │   │       ├── testconsole.aps
│   │   │       ├── testconsole.clw
│   │   │       ├── testconsole.cpp
│   │   │       ├── testconsole.dsp
│   │   │       ├── testconsole.dsw
│   │   │       ├── testconsole.h
│   │   │       ├── testconsole.ncb
│   │   │       ├── testconsole.opt
│   │   │       ├── testconsole.plg
│   │   │       ├── testconsole.rc
│   │   │       ├── testconsoleDlg.cpp
│   │   │       └── testconsoleDlg.h
│   │   ├── 采用Winmain代替Main
│   │   │   ├── ball
│   │   │   │   ├── Debug
│   │   │   │   │   └── ball.exe
│   │   │   │   ├── ball.c
│   │   │   │   ├── ball.dsp
│   │   │   │   ├── ball.dsp.org
│   │   │   │   ├── ball.dsp.tmp
│   │   │   │   ├── ball.dsw
│   │   │   │   ├── ball.exe
│   │   │   │   ├── ball.fig
│   │   │   │   ├── ball.h
│   │   │   │   ├── ball.ilk
│   │   │   │   ├── ball.ncb
│   │   │   │   ├── ball.opt
│   │   │   │   ├── ball.pdb
│   │   │   │   ├── ball.plg
│   │   │   │   ├── ball_mainhg.c
│   │   │   │   ├── ball_master.rsp
│   │   │   │   ├── bin
│   │   │   │   │   ├── FigureMenuBar.fig
│   │   │   │   │   └── FigureToolBar.fig
│   │   │   │   ├── gui_mainfcn.c
│   │   │   │   ├── gui_mainfcn.h
│   │   │   │   ├── guidata.c
│   │   │   │   ├── guidata.h
│   │   │   │   ├── guihandles.c
│   │   │   │   ├── guihandles.h
│   │   │   │   ├── iskeyword.c
│   │   │   │   ├── iskeyword.h
│   │   │   │   ├── isvarname.c
│   │   │   │   ├── isvarname.h
│   │   │   │   ├── mcc-files.txt
│   │   │   │   ├── mcc-files.txt.bak
│   │   │   │   ├── mcc-log.txt
│   │   │   │   ├── mcc.mak
│   │   │   │   ├── mcc.opt
│   │   │   │   ├── movegui.c
│   │   │   │   ├── movegui.h
│   │   │   │   ├── openfig.c
│   │   │   │   ├── openfig.h
│   │   │   │   └── readme.txt
│   │   │   ├── ball.fig
│   │   │   ├── ball.m
│   │   │   └── drawdiamond.m
│   │   └── 将输出改到Windows窗口上
│   │       └── testredirectoutput
│   │           ├── Debug
│   │           │   ├── plotrand
│   │           │   │   ├── bin
│   │           │   │   │   ├── FigureMenuBar.fig
│   │           │   │   │   └── FigureToolBar.fig
│   │           │   │   └── plotrand.exe
│   │           │   └── testredirectoutput.exe
│   │           ├── MainFrm.cpp
│   │           ├── MainFrm.h
│   │           ├── ReadMe.txt
│   │           ├── Resource.h
│   │           ├── ShellView.cpp
│   │           ├── ShellView.h
│   │           ├── StdAfx.cpp
│   │           ├── StdAfx.h
│   │           ├── plotrand
│   │           │   ├── bin
│   │           │   │   ├── FigureMenuBar.fig
│   │           │   │   └── FigureToolBar.fig
│   │           │   ├── plotrand.c
│   │           │   ├── plotrand.exe
│   │           │   ├── plotrand.h
│   │           │   ├── plotrand.m
│   │           │   └── plotrand_mainhg.c
│   │           ├── res
│   │           │   ├── Toolbar.bmp
│   │           │   ├── testredirectoutput.ico
│   │           │   ├── testredirectoutput.rc2
│   │           │   └── testredirectoutputDoc.ico
│   │           ├── testredirectoutput.aps
│   │           ├── testredirectoutput.clw
│   │           ├── testredirectoutput.cpp
│   │           ├── testredirectoutput.dsp
│   │           ├── testredirectoutput.dsw
│   │           ├── testredirectoutput.exe
│   │           ├── testredirectoutput.h
│   │           ├── testredirectoutput.ncb
│   │           ├── testredirectoutput.opt
│   │           ├── testredirectoutput.plg
│   │           ├── testredirectoutput.rc
│   │           ├── testredirectoutputDoc.cpp
│   │           └── testredirectoutputDoc.h
│   ├── 第4章
│   │   ├── VC 中调用Matlab  .m函数编译后的动态链接库
│   │   │   ├── m
│   │   │   │   ├── bin
│   │   │   │   │   ├── FigureMenuBar.fig
│   │   │   │   │   └── FigureToolBar.fig
│   │   │   │   ├── libsincplot.c
│   │   │   │   ├── libsincplot.dll
│   │   │   │   ├── libsincplot.exp
│   │   │   │   ├── libsincplot.exports
│   │   │   │   ├── libsincplot.h
│   │   │   │   ├── libsincplot.lib
│   │   │   │   ├── libsincplot.mlib
│   │   │   │   ├── sincplot.c
│   │   │   │   ├── sincplot.h
│   │   │   │   └── sincplot.m
│   │   │   └── testsincplot_dll
│   │   │       ├── Debug
│   │   │       │   ├── libsincplot.dll
│   │   │       │   └── testsincplot_dll.exe
│   │   │       ├── MainFrm.cpp
│   │   │       ├── MainFrm.h
│   │   │       ├── ReadMe.txt
│   │   │       ├── Resource.h
│   │   │       ├── StdAfx.cpp
│   │   │       ├── StdAfx.h
│   │   │       ├── libsincplot.h
│   │   │       ├── libsincplot.lib
│   │   │       ├── res
│   │   │       │   ├── Toolbar.bmp
│   │   │       │   ├── testsincplot_dll.ico
│   │   │       │   ├── testsincplot_dll.rc2
│   │   │       │   └── testsincplot_dllDoc.ico
│   │   │       ├── testsincplot_dll.aps
│   │   │       ├── testsincplot_dll.clw
│   │   │       ├── testsincplot_dll.cpp
│   │   │       ├── testsincplot_dll.dsp
│   │   │       ├── testsincplot_dll.dsw
│   │   │       ├── testsincplot_dll.h
│   │   │       ├── testsincplot_dll.ncb
│   │   │       ├── testsincplot_dll.opt
│   │   │       ├── testsincplot_dll.plg
│   │   │       ├── testsincplot_dll.rc
│   │   │       ├── testsincplot_dllDoc.cpp
│   │   │       ├── testsincplot_dllDoc.h
│   │   │       ├── testsincplot_dllView.cpp
│   │   │       └── testsincplot_dllView.h
│   │   ├── VC 中调用Matlab .m函数编译后的对应c函数
│   │   │   ├── m
│   │   │   │   ├── libsincplot.c
│   │   │   │   ├── libsincplot.exports
│   │   │   │   ├── libsincplot.h
│   │   │   │   ├── libsincplot.mlib
│   │   │   │   ├── sincplot.c
│   │   │   │   ├── sincplot.h
│   │   │   │   └── sincplot.m
│   │   │   └── testsincplot
│   │   │       ├── Debug
│   │   │       │   └── testsincplot.exe
│   │   │       ├── libsincplot.c
│   │   │       ├── libsincplot.h
│   │   │       ├── mcc.opt
│   │   │       ├── readme.txt
│   │   │       ├── sincplot.c
│   │   │       ├── sincplot.h
│   │   │       ├── testsincplot.c
│   │   │       ├── testsincplot.dsp
│   │   │       ├── testsincplot.dsw
│   │   │       ├── testsincplot.ncb
│   │   │       ├── testsincplot.opt
│   │   │       └── testsincplot.plg
│   │   └── matlabenginetest
│   │       ├── Debug
│   │       │   └── matlabenginetest.exe
│   │       ├── MainFrm.cpp
│   │       ├── MainFrm.h
│   │       ├── ReadMe.txt
│   │       ├── Resource.h
│   │       ├── StdAfx.cpp
│   │       ├── StdAfx.h
│   │       ├── matlabenginetest.aps
│   │       ├── matlabenginetest.clw
│   │       ├── matlabenginetest.cpp
│   │       ├── matlabenginetest.dsp
│   │       ├── matlabenginetest.dsw
│   │       ├── matlabenginetest.h
│   │       ├── matlabenginetest.ncb
│   │       ├── matlabenginetest.opt
│   │       ├── matlabenginetest.plg
│   │       ├── matlabenginetest.rc
│   │       ├── matlabenginetestDoc.cpp
│   │       ├── matlabenginetestDoc.h
│   │       ├── matlabenginetestView.cpp
│   │       ├── matlabenginetestView.h
│   │       └── res
│   │           ├── Thumbs.db
│   │           ├── Toolbar.bmp
│   │           ├── matlabenginetest.ico
│   │           ├── matlabenginetest.rc2
│   │           └── matlabenginetestDoc.ico
│   ├── 第5章
│   │   ├── 实例1
│   │   │   ├── Debug
│   │   │   │   ├── 1.txt
│   │   │   │   ├── StdAfx.obj
│   │   │   │   ├── StdAfx.sbr
│   │   │   │   ├── testmatcomvc.bsc
│   │   │   │   ├── testmatcomvc.exe
│   │   │   │   ├── testmatcomvc.ilk
│   │   │   │   ├── testmatcomvc.obj
│   │   │   │   ├── testmatcomvc.pch
│   │   │   │   ├── testmatcomvc.pdb
│   │   │   │   ├── testmatcomvc.sbr
│   │   │   │   ├── vc60.idb
│   │   │   │   └── vc60.pdb
│   │   │   ├── ReadMe.txt
│   │   │   ├── StdAfx.cpp
│   │   │   ├── StdAfx.h
│   │   │   ├── testmatcomvc.cpp
│   │   │   ├── testmatcomvc.dsp
│   │   │   ├── testmatcomvc.dsw
│   │   │   ├── testmatcomvc.ncb
│   │   │   ├── testmatcomvc.opt
│   │   │   └── testmatcomvc.plg
│   │   ├── 实例2
│   │   │   ├── Debug
│   │   │   │   └── testmatcom_mfc.exe
│   │   │   ├── MainFrm.cpp
│   │   │   ├── MainFrm.h
│   │   │   ├── ReadMe.txt
│   │   │   ├── Resource.h
│   │   │   ├── StdAfx.cpp
│   │   │   ├── StdAfx.h
│   │   │   ├── matlib.h
│   │   │   ├── res
│   │   │   │   ├── Toolbar.bmp
│   │   │   │   ├── testmatcom_mfc.ico
│   │   │   │   ├── testmatcom_mfc.rc2
│   │   │   │   └── testmatcom_mfcDoc.ico
│   │   │   ├── testmatcom_mfc.aps
│   │   │   ├── testmatcom_mfc.clw
│   │   │   ├── testmatcom_mfc.cpp
│   │   │   ├── testmatcom_mfc.dsp
│   │   │   ├── testmatcom_mfc.dsw
│   │   │   ├── testmatcom_mfc.h
│   │   │   ├── testmatcom_mfc.ncb
│   │   │   ├── testmatcom_mfc.opt
│   │   │   ├── testmatcom_mfc.plg
│   │   │   ├── testmatcom_mfc.rc
│   │   │   ├── testmatcom_mfcDoc.cpp
│   │   │   ├── testmatcom_mfcDoc.h
│   │   │   ├── testmatcom_mfcView.cpp
│   │   │   ├── testmatcom_mfcView.h
│   │   │   └── ~VC2D6.tmp
│   │   ├── 实例3
│   │   │   ├── Debug
│   │   │   │   ├── MainFrm.obj
│   │   │   │   ├── MainFrm.sbr
│   │   │   │   ├── StdAfx.obj
│   │   │   │   ├── StdAfx.sbr
│   │   │   │   ├── testmatcom_mfc.bsc
│   │   │   │   ├── testmatcom_mfc.exe
│   │   │   │   ├── testmatcom_mfc.ilk
│   │   │   │   ├── testmatcom_mfc.obj
│   │   │   │   ├── testmatcom_mfc.pch
│   │   │   │   ├── testmatcom_mfc.pdb
│   │   │   │   ├── testmatcom_mfc.res
│   │   │   │   ├── testmatcom_mfc.sbr
│   │   │   │   ├── testmatcom_mfcDoc.obj
│   │   │   │   ├── testmatcom_mfcDoc.sbr
│   │   │   │   ├── testmatcom_mfcView.obj
│   │   │   │   ├── testmatcom_mfcView.sbr
│   │   │   │   ├── vc60.idb
│   │   │   │   └── vc60.pdb
│   │   │   ├── MainFrm.cpp
│   │   │   ├── MainFrm.h
│   │   │   ├── ReadMe.txt
│   │   │   ├── Resource.h
│   │   │   ├── StdAfx.cpp
│   │   │   ├── StdAfx.h
│   │   │   ├── matlib.h
│   │   │   ├── res
│   │   │   │   ├── Toolbar.bmp
│   │   │   │   ├── testmatcom_mfc.ico
│   │   │   │   ├── testmatcom_mfc.rc2
│   │   │   │   └── testmatcom_mfcDoc.ico
│   │   │   ├── testmatcom_mfc.aps
│   │   │   ├── testmatcom_mfc.clw
│   │   │   ├── testmatcom_mfc.cpp
│   │   │   ├── testmatcom_mfc.dsp
│   │   │   ├── testmatcom_mfc.dsw
│   │   │   ├── testmatcom_mfc.h
│   │   │   ├── testmatcom_mfc.ncb
│   │   │   ├── testmatcom_mfc.opt
│   │   │   ├── testmatcom_mfc.plg
│   │   │   ├── testmatcom_mfc.rc
│   │   │   ├── testmatcom_mfcDoc.cpp
│   │   │   ├── testmatcom_mfcDoc.h
│   │   │   ├── testmatcom_mfcView.cpp
│   │   │   ├── testmatcom_mfcView.h
│   │   │   └── ~VC2D6.tmp
│   │   ├── 实例4
│   │   │   ├── Debug
│   │   │   │   ├── Thumbs.db
│   │   │   │   ├── jieguo.bmp
│   │   │   │   ├── test.bmp
│   │   │   │   └── testmatcom_image.exe
│   │   │   ├── MainFrm.cpp
│   │   │   ├── MainFrm.h
│   │   │   ├── ReadMe.txt
│   │   │   ├── Resource.h
│   │   │   ├── StdAfx.cpp
│   │   │   ├── StdAfx.h
│   │   │   ├── jieguo.bmp
│   │   │   ├── matlib.h
│   │   │   ├── res
│   │   │   │   ├── Toolbar.bmp
│   │   │   │   ├── testmatcom_image.ico
│   │   │   │   ├── testmatcom_image.rc2
│   │   │   │   └── testmatcom_imageDoc.ico
│   │   │   ├── test.bmp
│   │   │   ├── testmatcom_image.aps
│   │   │   ├── testmatcom_image.clw
│   │   │   ├── testmatcom_image.cpp
│   │   │   ├── testmatcom_image.dsp
│   │   │   ├── testmatcom_image.dsw
│   │   │   ├── testmatcom_image.h
│   │   │   ├── testmatcom_image.ncb
│   │   │   ├── testmatcom_image.opt
│   │   │   ├── testmatcom_image.plg
│   │   │   ├── testmatcom_image.rc
│   │   │   ├── testmatcom_imageDoc.cpp
│   │   │   ├── testmatcom_imageDoc.h
│   │   │   ├── testmatcom_imageView.cpp
│   │   │   ├── testmatcom_imageView.h
│   │   │   └── wn_640.bmp
│   │   └── 实例5
│   │       ├── ChildFrm.cpp
│   │       ├── ChildFrm.h
│   │       ├── Debug
│   │       │   └── matcomplotshow.exe
│   │       ├── MainFrm.cpp
│   │       ├── MainFrm.h
│   │       ├── ReadMe.txt
│   │       ├── Resource.h
│   │       ├── StdAfx.cpp
│   │       ├── StdAfx.h
│   │       ├── matcomplotshow.aps
│   │       ├── matcomplotshow.clw
│   │       ├── matcomplotshow.cpp
│   │       ├── matcomplotshow.dsp
│   │       ├── matcomplotshow.dsw
│   │       ├── matcomplotshow.h
│   │       ├── matcomplotshow.ncb
│   │       ├── matcomplotshow.opt
│   │       ├── matcomplotshow.plg
│   │       ├── matcomplotshow.rc
│   │       ├── matcomplotshowDoc.cpp
│   │       ├── matcomplotshowDoc.h
│   │       ├── matcomplotshowView.cpp
│   │       ├── matcomplotshowView.h
│   │       ├── matlib.h
│   │       └── res
│   │           ├── Thumbs.db
│   │           ├── Toolbar.bmp
│   │           ├── matcomplotshow.ico
│   │           ├── matcomplotshow.rc2
│   │           └── matcomplotshowDoc.ico
│   ├── 第6章
│   │   ├── MWSparseMaxtrix
│   │   │   ├── SparseMatrixText.cbl
│   │   │   ├── VC
│   │   │   │   ├── Debug
│   │   │   │   │   └── SparseMatrixVc.exe
│   │   │   │   ├── ReadMe.txt
│   │   │   │   ├── SparseMatrixText_1_0.c
│   │   │   │   ├── SparseMatrixText_1_0.h
│   │   │   │   ├── SparseMatrixVc.cpp
│   │   │   │   ├── SparseMatrixVc.dsp
│   │   │   │   ├── SparseMatrixVc.dsw
│   │   │   │   ├── SparseMatrixVc.ncb
│   │   │   │   ├── SparseMatrixVc.opt
│   │   │   │   ├── SparseMatrixVc.plg
│   │   │   │   ├── StdAfx.cpp
│   │   │   │   └── StdAfx.h
│   │   │   ├── build.log
│   │   │   ├── distrib
│   │   │   │   ├── SparseMatrixText_1_0.c
│   │   │   │   ├── SparseMatrixText_1_0.dll
│   │   │   │   └── SparseMatrixText_1_0.h
│   │   │   ├── mfiles
│   │   │   │   ├── display.m.bak
│   │   │   │   ├── displaymatrix.m
│   │   │   │   ├── sparsematrix.m
│   │   │   │   └── sparsematrix.m.bak
│   │   │   └── src
│   │   │       ├── SparseMatrixText_1_0.exp
│   │   │       ├── SparseMatrixText_1_0.ilk
│   │   │       ├── SparseMatrixText_1_0.lib
│   │   │       ├── displaymatrix.cpp
│   │   │       ├── displaymatrix.hpp
│   │   │       ├── dlldata.c
│   │   │       ├── sparsematrix.cpp
│   │   │       ├── sparsematrix.hpp
│   │   │       ├── sparsematrixtext.cpp
│   │   │       ├── sparsematrixtext.def
│   │   │       ├── sparsematrixtext.hpp
│   │   │       ├── sparsematrixtext.rc
│   │   │       ├── sparsematrixtext_1_0.pdb
│   │   │       ├── sparsematrixtext_com.cpp
│   │   │       ├── sparsematrixtext_com.hpp
│   │   │       ├── sparsematrixtext_dll.cpp
│   │   │       ├── sparsematrixtext_idl.h
│   │   │       ├── sparsematrixtext_idl.idl
│   │   │       ├── sparsematrixtext_idl.tlb
│   │   │       ├── sparsematrixtext_idl_i.c
│   │   │       └── sparsematrixtext_idl_p.c
│   │   ├── MWStruct
│   │   │   ├── VC
│   │   │   │   ├── MWStruct和MWField操作实例
│   │   │   │   │   ├── Debug
│   │   │   │   │   │   ├── mwcomutil.tlh
│   │   │   │   │   │   └── structfiles_1_0.tlh
│   │   │   │   │   ├── ReadMe.txt
│   │   │   │   │   ├── Resource.h
│   │   │   │   │   ├── StdAfx.cpp
│   │   │   │   │   ├── StdAfx.h
│   │   │   │   │   ├── mwcomutil.cpp
│   │   │   │   │   ├── mwcomutil.h
│   │   │   │   │   ├── structcombinecom_1_0.c
│   │   │   │   │   ├── structcombinecom_1_0.h
│   │   │   │   │   ├── structfiles
│   │   │   │   │   │   ├── build.log
│   │   │   │   │   │   ├── distrib
│   │   │   │   │   │   │   ├── structfiles_1_0.dll
│   │   │   │   │   │   │   └── structfiles_1_0.opt
│   │   │   │   │   │   ├── src
│   │   │   │   │   │   │   ├── displaystruct.c
│   │   │   │   │   │   │   ├── displaystruct.h
│   │   │   │   │   │   │   ├── dlldata.c
│   │   │   │   │   │   │   ├── getstruct.c
│   │   │   │   │   │   │   ├── getstruct.h
│   │   │   │   │   │   │   ├── structfiles.c
│   │   │   │   │   │   │   ├── structfiles.def
│   │   │   │   │   │   │   ├── structfiles.h
│   │   │   │   │   │   │   ├── structfiles.rc
│   │   │   │   │   │   │   ├── structfiles_1_0.exp
│   │   │   │   │   │   │   ├── structfiles_1_0.lib
│   │   │   │   │   │   │   ├── structfiles_com.cpp
│   │   │   │   │   │   │   ├── structfiles_com.hpp
│   │   │   │   │   │   │   ├── structfiles_dll.cpp
│   │   │   │   │   │   │   ├── structfiles_idl.h
│   │   │   │   │   │   │   ├── structfiles_idl.idl
│   │   │   │   │   │   │   ├── structfiles_idl.tlb
│   │   │   │   │   │   │   ├── structfiles_idl_i.c
│   │   │   │   │   │   │   └── structfiles_idl_p.c
│   │   │   │   │   │   └── structfiles.cbl
│   │   │   │   │   ├── test.aps
│   │   │   │   │   ├── test.clw
│   │   │   │   │   ├── test.cpp
│   │   │   │   │   ├── test.dsp
│   │   │   │   │   ├── test.dsw
│   │   │   │   │   ├── test.h
│   │   │   │   │   ├── test.ncb
│   │   │   │   │   ├── test.opt
│   │   │   │   │   ├── test.plg
│   │   │   │   │   └── test.rc
│   │   │   │   └── structcombine
│   │   │   │       ├── Debug
│   │   │   │       ├── MyClass.cpp
│   │   │   │       ├── MyClass.h
│   │   │   │       ├── ReadMe.txt
│   │   │   │       ├── StdAfx.cpp
│   │   │   │       ├── StdAfx.h
│   │   │   │       ├── mwcomtypes.h
│   │   │   │       ├── mwcomutil.tlb
│   │   │   │       ├── structcombine.cpp
│   │   │   │       ├── structcombine.dsp
│   │   │   │       ├── structcombine.dsw
│   │   │   │       ├── structcombine.ncb
│   │   │   │       ├── structcombine.opt
│   │   │   │       ├── structcombine.plg
│   │   │   │       ├── structcombinecom_1_0.c
│   │   │   │       └── structcombinecom_1_0.h
│   │   │   ├── comtools
│   │   │   │   ├── build.log
│   │   │   │   ├── distrib
│   │   │   │   │   ├── structcombinecom_1_0.c
│   │   │   │   │   ├── structcombinecom_1_0.dll
│   │   │   │   │   ├── structcombinecom_1_0.h
│   │   │   │   │   └── structcombinecom_1_0.opt
│   │   │   │   ├── src
│   │   │   │   │   ├── dlldata.c
│   │   │   │   │   ├── structcombine.cpp
│   │   │   │   │   ├── structcombine.hpp
│   │   │   │   │   ├── structcombinecom.cpp
│   │   │   │   │   ├── structcombinecom.def
│   │   │   │   │   ├── structcombinecom.hpp
│   │   │   │   │   ├── structcombinecom.rc
│   │   │   │   │   ├── structcombinecom_1_0.exp
│   │   │   │   │   ├── structcombinecom_1_0.ilk
│   │   │   │   │   ├── structcombinecom_1_0.lib
│   │   │   │   │   ├── structcombinecom_1_0.pdb
│   │   │   │   │   ├── structcombinecom_com.cpp
│   │   │   │   │   ├── structcombinecom_com.hpp
│   │   │   │   │   ├── structcombinecom_dll.cpp
│   │   │   │   │   ├── structcombinecom_idl.h
│   │   │   │   │   ├── structcombinecom_idl.idl
│   │   │   │   │   ├── structcombinecom_idl.tlb
│   │   │   │   │   ├── structcombinecom_idl_i.c
│   │   │   │   │   └── structcombinecom_idl_p.c
│   │   │   │   ├── structcombine.m
│   │   │   │   └── structcombinecom.cbl
│   │   │   └── mfiles
│   │   │       ├── bin
│   │   │       │   ├── FigureMenuBar.fig
│   │   │       │   └── FigureToolBar.fig
│   │   │       ├── struct.m.bak
│   │   │       ├── structcombine.asv
│   │   │       ├── structcombine.c
│   │   │       ├── structcombine.exe
│   │   │       ├── structcombine.h
│   │   │       ├── structcombine.m
│   │   │       ├── structcombine.m.bak
│   │   │       └── structcombine_mainhg.c
│   │   ├── arraypass
│   │   │   ├── VC
│   │   │   │   ├── complexarray
│   │   │   │   │   └── arraycomplex
│   │   │   │   │       ├── Debug
│   │   │   │   │       │   └── arraycomplex.exe
│   │   │   │   │       ├── ReadMe.txt
│   │   │   │   │       ├── StdAfx.cpp
│   │   │   │   │       ├── StdAfx.h
│   │   │   │   │       ├── arraycomplex.cpp
│   │   │   │   │       ├── arraycomplex.dsp
│   │   │   │   │       ├── arraycomplex.dsw
│   │   │   │   │       ├── arraycomplex.ncb
│   │   │   │   │       ├── arraycomplex.opt
│   │   │   │   │       ├── arraycomplex.plg
│   │   │   │   │       ├── arraypasscom_1_0.c
│   │   │   │   │       └── arraypasscom_1_0.h
│   │   │   │   └── realarray
│   │   │   │       ├── Debug
│   │   │   │       │   └── array.exe
│   │   │   │       ├── ReadMe.txt
│   │   │   │       ├── StdAfx.cpp
│   │   │   │       ├── StdAfx.h
│   │   │   │       ├── addarray.m
│   │   │   │       ├── array.cpp
│   │   │   │       ├── array.dsp
│   │   │   │       ├── array.dsw
│   │   │   │       ├── array.ncb
│   │   │   │       ├── array.opt
│   │   │   │       ├── array.plg
│   │   │   │       ├── arraypasscom_1_0.c
│   │   │   │       ├── arraypasscom_1_0.h
│   │   │   │       ├── mwcomutil.h
│   │   │   │       ├── mwcomutil.tlh
│   │   │   │       └── mwutil.h
│   │   │   ├── arraycom
│   │   │   │   ├── arraypasscom.cbl
│   │   │   │   ├── build.log
│   │   │   │   ├── distrib
│   │   │   │   │   ├── arraypasscom_1_0.c
│   │   │   │   │   ├── arraypasscom_1_0.dll
│   │   │   │   │   └── arraypasscom_1_0.h
│   │   │   │   └── src
│   │   │   │       ├── addarray.cpp
│   │   │   │       ├── addarray.hpp
│   │   │   │       ├── addcomplexarray.cpp
│   │   │   │       ├── addcomplexarray.hpp
│   │   │   │       ├── arraypasscom.cpp
│   │   │   │       ├── arraypasscom.def
│   │   │   │       ├── arraypasscom.hpp
│   │   │   │       ├── arraypasscom.rc
│   │   │   │       ├── arraypasscom_1_0.exp
│   │   │   │       ├── arraypasscom_1_0.ilk
│   │   │   │       ├── arraypasscom_1_0.lib
│   │   │   │       ├── arraypasscom_1_0.pdb
│   │   │   │       ├── arraypasscom_com.cpp
│   │   │   │       ├── arraypasscom_com.hpp
│   │   │   │       ├── arraypasscom_dll.cpp
│   │   │   │       ├── arraypasscom_idl.h
│   │   │   │       ├── arraypasscom_idl.idl
│   │   │   │       ├── arraypasscom_idl.tlb
│   │   │   │       ├── arraypasscom_idl_i.c
│   │   │   │       ├── arraypasscom_idl_p.c
│   │   │   │       ├── displayarray.cpp
│   │   │   │       ├── displayarray.hpp
│   │   │   │       └── dlldata.c
│   │   │   └── mfiles
│   │   │       ├── addarray.m
│   │   │       ├── addarray.m.bak
│   │   │       ├── addcomplexarray.m
│   │   │       ├── addcomplexarray.m.bak
│   │   │       ├── displayarray.bak
│   │   │       └── displayarray.m
│   │   ├── cell_or_matrix
│   │   │   ├── VC
│   │   │   │   ├── Debug
│   │   │   │   │   └── cellormatrixvc.exe
│   │   │   │   ├── ReadMe.txt
│   │   │   │   ├── StdAfx.cpp
│   │   │   │   ├── StdAfx.h
│   │   │   │   ├── cellormatrixvc.cpp
│   │   │   │   ├── cellormatrixvc.dsp
│   │   │   │   ├── cellormatrixvc.dsw
│   │   │   │   ├── cellormatrixvc.ncb
│   │   │   │   ├── cellormatrixvc.opt
│   │   │   │   ├── cellormatrixvc.plg
│   │   │   │   ├── mwcomutil.tlh
│   │   │   │   ├── testcellormatrix_1_0.c
│   │   │   │   └── testcellormatrix_1_0.h
│   │   │   └── mfiles
│   │   │       ├── build.log
│   │   │       ├── displayinput.m
│   │   │       ├── displayinput.m.bak
│   │   │       ├── distrib
│   │   │       │   ├── _install.bat
│   │   │       │   ├── testcellormatrix.exe
│   │   │       │   ├── testcellormatrix_1_0.c
│   │   │       │   ├── testcellormatrix_1_0.dll
│   │   │       │   ├── testcellormatrix_1_0.h
│   │   │       │   └── testcellormatrix_1_0.opt
│   │   │       ├── src
│   │   │       │   ├── displayinput.cpp
│   │   │       │   ├── displayinput.hpp
│   │   │       │   ├── dlldata.c
│   │   │       │   ├── testcellormatrix.cpp
│   │   │       │   ├── testcellormatrix.def
│   │   │       │   ├── testcellormatrix.hpp
│   │   │       │   ├── testcellormatrix.rc
│   │   │       │   ├── testcellormatrix_1_0.exp
│   │   │       │   ├── testcellormatrix_1_0.ilk
│   │   │       │   ├── testcellormatrix_1_0.lib
│   │   │       │   ├── testcellormatrix_1_0.pdb
│   │   │       │   ├── testcellormatrix_com.cpp
│   │   │       │   ├── testcellormatrix_com.hpp
│   │   │       │   ├── testcellormatrix_dll.cpp
│   │   │       │   ├── testcellormatrix_idl.h
│   │   │       │   ├── testcellormatrix_idl.idl
│   │   │       │   ├── testcellormatrix_idl.tlb
│   │   │       │   ├── testcellormatrix_idl_i.c
│   │   │       │   └── testcellormatrix_idl_p.c
│   │   │       └── testcellormatrix.cbl
│   │   ├── mwpack_mwunpack
│   │   │   ├── VC
│   │   │   │   ├── Debug
│   │   │   │   │   └── mwcomutil.tlh
│   │   │   │   ├── ReadMe.txt
│   │   │   │   ├── StdAfx.cpp
│   │   │   │   ├── StdAfx.h
│   │   │   │   ├── mwcomutil.tlh
│   │   │   │   ├── mwutilvc.cpp
│   │   │   │   ├── mwutilvc.dsp
│   │   │   │   ├── mwutilvc.dsw
│   │   │   │   ├── mwutilvc.ncb
│   │   │   │   ├── mwutilvc.opt
│   │   │   │   ├── mwutilvc.plg
│   │   │   │   ├── testmwutil_1_0.c
│   │   │   │   └── testmwutil_1_0.h
│   │   │   ├── build.log
│   │   │   ├── distrib
│   │   │   │   ├── _install.bat
│   │   │   │   ├── testmwutil.exe
│   │   │   │   ├── testmwutil_1_0.c
│   │   │   │   ├── testmwutil_1_0.dll
│   │   │   │   └── testmwutil_1_0.h
│   │   │   ├── mfiles
│   │   │   │   ├── createdicionary.m.bak
│   │   │   │   ├── createdictionary.m
│   │   │   │   ├── displayinput.m
│   │   │   │   ├── displayinput.m.bak
│   │   │   │   ├── sortinputstring.m
│   │   │   │   └── sortinputstring.m.bak
│   │   │   ├── src
│   │   │   │   ├── createdictionary.cpp
│   │   │   │   ├── createdictionary.hpp
│   │   │   │   ├── displayinput.cpp
│   │   │   │   ├── displayinput.hpp
│   │   │   │   ├── dlldata.c
│   │   │   │   ├── sortinputstring.cpp
│   │   │   │   ├── sortinputstring.hpp
│   │   │   │   ├── testmwutil.cpp
│   │   │   │   ├── testmwutil.def
│   │   │   │   ├── testmwutil.hpp
│   │   │   │   ├── testmwutil.rc
│   │   │   │   ├── testmwutil_1_0.exp
│   │   │   │   ├── testmwutil_1_0.ilk
│   │   │   │   ├── testmwutil_1_0.lib
│   │   │   │   ├── testmwutil_1_0.pdb
│   │   │   │   ├── testmwutil_com.cpp
│   │   │   │   ├── testmwutil_com.hpp
│   │   │   │   ├── testmwutil_dll.cpp
│   │   │   │   ├── testmwutil_idl.h
│   │   │   │   ├── testmwutil_idl.idl
│   │   │   │   ├── testmwutil_idl.tlb
│   │   │   │   ├── testmwutil_idl_i.c
│   │   │   │   └── testmwutil_idl_p.c
│   │   │   └── testmwutil.cbl
│   │   ├── 实例说明.txt
│   │   ├── 实例说明.txt.bak
│   │   └── 列表及说明.txt.bak
│   ├── 第7章
│   │   ├── 7.3.1
│   │   │   ├── 1. 直接输出到屏幕
│   │   │   │   ├── Debug
│   │   │   │   │   └── ex1.exe
│   │   │   │   ├── ReadMe.txt
│   │   │   │   ├── StdAfx.cpp
│   │   │   │   ├── StdAfx.h
│   │   │   │   ├── ex1.cpp
│   │   │   │   ├── ex1.dsp
│   │   │   │   ├── ex1.dsw
│   │   │   │   ├── ex1.ncb
│   │   │   │   ├── ex1.opt
│   │   │   │   └── ex1.plg
│   │   │   └── 2. Matlab mwArray阵列数据的输入和输出的其他方式
│   │   │       ├── Debug
│   │   │       │   ├── 1.txt
│   │   │       │   ├── 2.txt
│   │   │       │   ├── dataoutput.mat
│   │   │       │   ├── mwArrayIO.exe
│   │   │       │   ├── 数据输出.txt
│   │   │       │   ├── 数据输出1.txt
│   │   │       │   └── 字符串输出.txt
│   │   │       ├── ReadMe.txt
│   │   │       ├── StdAfx.cpp
│   │   │       ├── StdAfx.h
│   │   │       ├── dataoutput.mat
│   │   │       ├── mwArrayIO.cpp
│   │   │       ├── mwArrayIO.dsp
│   │   │       ├── mwArrayIO.dsw
│   │   │       ├── mwArrayIO.ncb
│   │   │       ├── mwArrayIO.opt
│   │   │       ├── mwArrayIO.plg
│   │   │       ├── 数据输出.txt
│   │   │       ├── 数据输出1.txt
│   │   │       └── 字符串输出.txt
│   │   └── 7.3.2
│   │       ├── 1. 创建Matlab mwArray阵列的操作
│   │       │   ├── Debug
│   │       │   │   ├── 1.txt
│   │       │   │   └── mwArrayCreate.exe
│   │       │   ├── ReadMe.txt
│   │       │   ├── StdAfx.cpp
│   │       │   ├── StdAfx.h
│   │       │   ├── mwArrayCreate.cpp
│   │       │   ├── mwArrayCreate.dsp
│   │       │   ├── mwArrayCreate.dsw
│   │       │   ├── mwArrayCreate.ncb
│   │       │   ├── mwArrayCreate.opt
│   │       │   └── mwArrayCreate.plg
│   │       ├── 2. 采用Matlab C 数学库对稀疏矩阵的操作
│   │       │   ├── Debug
│   │       │   │   ├── 1.txt
│   │       │   │   ├── sparseArrayCreate.exe
│   │       │   │   └── sparsedata.dat
│   │       │   ├── ReadMe.txt
│   │       │   ├── StdAfx.cpp
│   │       │   ├── StdAfx.h
│   │       │   ├── sparseArrayCreate.cpp
│   │       │   ├── sparseArrayCreate.dsp
│   │       │   ├── sparseArrayCreate.dsw
│   │       │   ├── sparseArrayCreate.ncb
│   │       │   ├── sparseArrayCreate.opt
│   │       │   ├── sparseArrayCreate.plg
│   │       │   ├── sparsedata.dat
│   │       │   ├── sparsedata.dat.bak
│   │       │   └── 复件 sparsedata.dat
│   │       ├── 3. Matlab C 数学库对字符型阵列的操作
│   │       │   ├── Debug
│   │       │   │   ├── 1.txt
│   │       │   │   └── charArrayCreate.exe
│   │       │   ├── ReadMe.txt
│   │       │   ├── StdAfx.cpp
│   │       │   ├── StdAfx.h
│   │       │   ├── charArrayCreate.cpp
│   │       │   ├── charArrayCreate.dsp
│   │       │   ├── charArrayCreate.dsw
│   │       │   ├── charArrayCreate.ncb
│   │       │   ├── charArrayCreate.opt
│   │       │   └── charArrayCreate.plg
│   │       ├── 4. Matlab C 数学库对元组阵列的操作
│   │       │   ├── Debug
│   │       │   │   ├── 1.txt
│   │       │   │   └── cellArrayCreate.exe
│   │       │   ├── ReadMe.txt
│   │       │   ├── StdAfx.cpp
│   │       │   ├── StdAfx.h
│   │       │   ├── cellArrayCreate.cpp
│   │       │   ├── cellArrayCreate.dsp
│   │       │   ├── cellArrayCreate.dsw
│   │       │   ├── cellArrayCreate.ncb
│   │       │   ├── cellArrayCreate.opt
│   │       │   └── cellArrayCreate.plg
│   │       ├── 5. Matlab C 数学库对结构阵列的操作
│   │       │   ├── Debug
│   │       │   │   ├── 2.txt
│   │       │   │   └── structArrayCreate.exe
│   │       │   ├── ReadMe.txt
│   │       │   ├── StdAfx.cpp
│   │       │   ├── StdAfx.h
│   │       │   ├── structArrayCreate.cpp
│   │       │   ├── structArrayCreate.dsp
│   │       │   ├── structArrayCreate.dsw
│   │       │   ├── structArrayCreate.ncb
│   │       │   ├── structArrayCreate.opt
│   │       │   └── structArrayCreate.plg
│   │       ├── 6.访问mwArray类中的数据
│   │       │   ├── Debug
│   │       │   │   ├── 2.txt
│   │       │   │   └── mwDataAccess.exe
│   │       │   ├── ReadMe.txt
│   │       │   ├── StdAfx.cpp
│   │       │   ├── StdAfx.h
│   │       │   ├── mwDataAccess.cpp
│   │       │   ├── mwDataAccess.dsp
│   │       │   ├── mwDataAccess.dsw
│   │       │   ├── mwDataAccess.ncb
│   │       │   ├── mwDataAccess.opt
│   │       │   └── mwDataAccess.plg
│   │       ├── 7. Matlab C 数学库对Matlab阵列操作常用的小技巧
│   │       │   └── src
│   │       │       ├── Debug
│   │       │       │   ├── 2.txt
│   │       │       │   └── mwDataChange.exe
│   │       │       ├── ReadMe.txt
│   │       │       ├── StdAfx.cpp
│   │       │       ├── StdAfx.h
│   │       │       ├── mwDataChange.cpp
│   │       │       ├── mwDataChange.dsp
│   │       │       ├── mwDataChange.dsw
│   │       │       ├── mwDataChange.ncb
│   │       │       ├── mwDataChange.opt
│   │       │       └── mwDataChange.plg
│   │       └── 8. 调用系统函数
│   │           └── mwCallFunction
│   │               ├── ReadMe.txt
│   │               ├── StdAfx.cpp
│   │               ├── StdAfx.h
│   │               ├── mwCallFunction.cpp
│   │               ├── mwCallFunction.dsp
│   │               ├── mwCallFunction.dsw
│   │               ├── mwCallFunction.ncb
│   │               ├── mwCallFunction.opt
│   │               └── mwCallFunction.plg
│   └── 说明.txt
└── 好例子网_精通Matlab与C和Cpp混合程序设计第2版源代码光盘.zip

259 directories, 884 files

0 directories, 0 files

实例下载地址

【随书源码】《精通Matlab与c/c++混合程序设计》第二版,刘维

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警