-
Matlab
matlab命令大全帮助初学者的工具书籍(matlab command Guinness tools to help beginners books)
- 2008-12-12 17:19:20下载
- 积分:1
-
args
ARGS is a MATLAB program which demonstrates command line argument retrieval.In particular, ARGS is a demonstration of the NARGIN function, which counts command line arguments and the VARARGIN function, which allows the user to specify that a routine has a variable number of input arguments.
- 2012-05-25 08:02:26下载
- 积分:1
-
MATLAB
Adobe Photoshop toolbox.Version 1.0 13-Dec-2006。photoshop中的matlab工具包,包括54个M文件,能够实现在matlab中调用photoshop的操作函数,并将处理结果传回matlab.也可以将matlab工作空间里的图像矩阵传送到photoshop中进行处理并动态返回结果.
该工具包从CS4中提取得到(其他版本没有测试过!),安装时直接解压缩到photoshop文件夹下,按照压缩包中的pdf说明文档在matlab中添加路径后即能够使用,并能够在help中看到一个photoshop toolbox.(Adobe Photoshop toolbox.Version 1.0 13-Dec-2006. photoshop in matlab toolkit, including 54 M files, photoshop function call operation can be achieved in matlab, and the results returned matlab. too matlab workspace in the image matrix can be transferred to photoshop for processing and dynamic returns the result. toolkit extract obtained from CS4 (other versions not tested!), unzip the installation directly to photoshop folder, according to the compressed package in matlab pdf documentation can add the path after use, and can see in the help of a photoshop toolbox.)
- 2013-12-15 16:01:55下载
- 积分:1
-
etd
DYNAMIC MODELING AND CONTROL OF NONHOLONOMIC WHEELED MOBILE ROBOT SUBJECTED TO WHEEL SLIP
- 2015-01-11 01:17:01下载
- 积分:1
-
MZI
M-Z干涉仪结构有限差分光速传播法源程序(The source program of M-Z Interferometer in FD-BPM)
- 2013-07-04 15:36:21下载
- 积分:1
-
MTIMTD
实现雷达脉冲信号的MTI和MTD处理,适用于动目标检测方向的小伙伴(MTI,MTD FOR LEARNING GMTI)
- 2021-04-28 17:18:43下载
- 积分:1
-
test_EVM
我们team开发的评估QPSK,16QAM,64QAM调制方式下的EVM指标的代码(evaluate EVM programmed by matlab)
- 2009-06-12 10:13:31下载
- 积分:1
-
DATA3M9B3G9
说明: 一个关与电力系统9节点的用于暂态分析的matlab程序。(Clearance with a 9-node power system transient analysis for the matlab procedures.)
- 2008-11-24 17:48:51下载
- 积分:1
-
chapter21
MATLAB智能算法30个案例分析第21章源代码(The MATLAB intelligent algorithm 30 case studies of Chapter 21 source code)
- 2012-05-19 10:33:36下载
- 积分:1
-
src
How to use the ordinary Voronoi partition generator. The m-files also have
their own help documentation that you can view in Matlab. This code creates
a bounding polygon that is a square. Then it randomly creates 10 points
and then creates and draws the partition.
bounds = [0, 10, 10, 0 0, 0, 10, 10]
points = 10 * rand(2, 10)
regions = voronoi(bounds, points)
drawRegions(bounds, regions)
================================
This is a brief set of instructions on how to use the Multiplicatively-
weighted Voronoi partition generator.
Each of the m-files has a help section, so in Matlab you can call:
help mwvoronoi
help drawRegions
Here is an example that creates a bounding polygon, a square with side
length 10. Then it randomly creates six points with random weights.
Finally, the code draws the resulting partition.
bounds = [0, 10, 10, 0 0, 0, 10, 10]
points = 10 * rand(3, 6)
regions = mwvoronoi(bounds, points)
drawRegions(bounds, regions)
Enjoy!
- 2013-10-30 12:23:18下载
- 积分:1