Description: MATLAB 的名称源自 Matrix Laboratory ,它是一种科学计算软件,专门以矩阵的形式处理数据。 MATLAB 将高性能的数值计算和可视化集成在一起,并提供了大量的内置函数,从而被广泛地应用于科学计算、控制系统、信息处理等领域的分析、仿真和设计工作,而且利用 MATLAB 产品的开放式结构,可以非常容易地对 MATLAB 的功能进行扩充,从而在不断深化对问题认识的同时,不断完善 MATLAB 产品以提高产品自身的竞争能力。重点介绍MATLAB创建图形用户界面应用程序的原则和方法,有大量具体的代码创建界面并实现相应用户动作的方法。
-MATLAB name from the Matrix Laboratory, it is a scientific computing software, specialized form of a matrix of data processing. MATLAB high-performance numerical computation and visualization integrated together, and provide a large number of built-in functions, which are widely used in scientific computation, control systems, information processing and other fields of analysis, simulation and design work, but using MATLAB product's open architecture can easily right MATLAB functions for the expansion, thus deepening the understanding of the problem, but also constantly improve MATLAB products to enhance their products competitive. Highlights MATLAB to create graphical user interface applications of the principles and methods, a large number of specific interface and creates a correspo Platform: |
Size: 195006 |
Author:洪春 |
Hits:
Description: Character Recognition Using Neural Networks
Steps to use this GUI.
1. Open the GUI figure, run it. (accept the matlab to change its directory to new location where the file is stored)
2. First we need to teach Character to computer. For this type the Character in the textbox space provided and press \"TEACH\".
3. You can save all the taught data.
4. For retrival, click start.
Note: Paint Brush software of microsoft opens for entering the image. So, we need to save the image after editing.
For best results teach each Character not less than ten times.
Platform: |
Size: 174766 |
Author:ruan |
Hits:
Description: MATLAB 的名称源自 Matrix Laboratory ,它是一种科学计算软件,专门以矩阵的形式处理数据。 MATLAB 将高性能的数值计算和可视化集成在一起,并提供了大量的内置函数,从而被广泛地应用于科学计算、控制系统、信息处理等领域的分析、仿真和设计工作,而且利用 MATLAB 产品的开放式结构,可以非常容易地对 MATLAB 的功能进行扩充,从而在不断深化对问题认识的同时,不断完善 MATLAB 产品以提高产品自身的竞争能力。重点介绍MATLAB创建图形用户界面应用程序的原则和方法,有大量具体的代码创建界面并实现相应用户动作的方法。
-MATLAB name from the Matrix Laboratory, it is a scientific computing software, specialized form of a matrix of data processing. MATLAB high-performance numerical computation and visualization integrated together, and provide a large number of built-in functions, which are widely used in scientific computation, control systems, information processing and other fields of analysis, simulation and design work, but using MATLAB product's open architecture can easily right MATLAB functions for the expansion, thus deepening the understanding of the problem, but also constantly improve MATLAB products to enhance their products competitive. Highlights MATLAB to create graphical user interface applications of the principles and methods, a large number of specific interface and creates a correspo Platform: |
Size: 194560 |
Author:洪春 |
Hits:
Description: Character Recognition Using Neural Networks
Steps to use this GUI.
1. Open the GUI figure, run it. (accept the matlab to change its directory to new location where the file is stored)
2. First we need to teach Character to computer. For this type the Character in the textbox space provided and press "TEACH".
3. You can save all the taught data.
4. For retrival, click start.
Note: Paint Brush software of microsoft opens for entering the image. So, we need to save the image after editing.
For best results teach each Character not less than ten times.
Platform: |
Size: 174080 |
Author:ruan |
Hits:
Description: 采用MATLAB编写的最新三维数据图形界面,运用GUI编程,输入函数名:volumization (data, n )即可。其中DATA的格式为:[n x m x p];n表示显示方式: 1 - all, 2 - every second, 3 - every third。
-MATLAB prepared using the latest three-dimensional data graphical interface, the use of GUI programming, enter the function name: volumization (data, n) can be. DATA format in which: [nxmxp] n that display: 1- all, 2- every second, 3- every third. Platform: |
Size: 83968 |
Author:Mark |
Hits:
Description: The robot currently moves with kinematic control using direct input of joint angles and slider bars (GUI). Some inverse kinematics options are built in but not automated yet (a demo button). A random input is also provided and the robot animates between locations.
There are just two files to use. The main program and the six 3D-links data file that is read in at start up.
-The robot currently moves with kinematic control using direct input of joint angles and slider bars (GUI). Some inverse kinematics options are built in but not automated yet (a demo button). A random input is also provided and the robot animates between locations.
There are just two files to use. The main program and the six 3D-links data file that is read in at start up.
Platform: |
Size: 53248 |
Author:Serena |
Hits:
Description: IMAQPLOT is a simple demonstration of previewing video data using the toolbox s TimerFcn callback. IMAQPLOT also allows users to integrate the video preview into any MATLAB GUI. These are capabilities that are present in the toolbox s PREVIEW command, but are presented here as a demonstration of TimerFcn callback.
Using toolbox callback properties, you can configure a video input object to generate a live image plot display.
Do you want a basic preview window created for you? Simply call:
obj = videoinput( matrox , 1)
obj.TimerFcn = @imaqplot
obj.TimerPeriod = 0.1
obj.FramesPerTrigger = Inf
start(obj)
Do you want to add a preview window to an existing GUI? Simply provide IMAQPLOT a handle to an image object and it will update it for you:
obj = videoinput( dt , 1)
obj.TimerFcn = {@imaqplot, hImage}
obj.TimerPeriod = 0.1
obj.FramesPerTrigger = Inf
start(obj)-IMAQPLOT is a simple demonstration of previewing video data using the toolbox s TimerFcn callback. IMAQPLOT also allows users to integrate the video preview into any MATLAB GUI. These are capabilities that are present in the toolbox s PREVIEW command, but are presented here as a demonstration of TimerFcn callback.
Using toolbox callback properties, you can configure a video input object to generate a live image plot display.
Do you want a basic preview window created for you? Simply call:
obj = videoinput( matrox , 1)
obj.TimerFcn = @imaqplot
obj.TimerPeriod = 0.1
obj.FramesPerTrigger = Inf
start(obj)
Do you want to add a preview window to an existing GUI? Simply provide IMAQPLOT a handle to an image object and it will update it for you:
obj = videoinput( dt , 1)
obj.TimerFcn = {@imaqplot, hImage}
obj.TimerPeriod = 0.1
obj.FramesPerTrigger = Inf
start(obj) Platform: |
Size: 2048 |
Author:Anna |
Hits:
Description: 关于解微分方程的matlab小程序,适合本科生学习使用。-MATLAB in Physics is a four lecture series in MATLAB that is offered to first year physics undergraduate students.
This lecture shows how to use MATLAB to simulate physical systems using a range of methods. Projectile motion is analysed using the Symbolic Math Toolbox, then more complicated chaotic systems are simulated using the MATLAB ODE solvers.
Some advanced programming techniques such as Object Oriented Programming (OOP) and Graphical User Interface (GUI) programming are briefly covered.
The aim of this lecture series is to introduce students to computational methods in MATLAB to solve problems arising in physics that cannot be solved analytically. No prior knowledge of MATLAB is required. Themes of data analysis, visualization, modelling and programming are explored throughout these lectures. Platform: |
Size: 151552 |
Author:HM |
Hits:
Description: 利用MATLAB GUI做的三维数据自动绘图程序,安装运行库后可自动运行,实现从EXCEL读取数据并自动绘制三维曲面图的功能-Using three-dimensional data in MATLAB GUI to do automatic drawing program, after installation of runtime to run automatically read data from a EXCEL and automatically draw the three-dimensional surface map features Platform: |
Size: 314368 |
Author:王永生 |
Hits:
Description: 利用Matlab提取图片中的数据
从事科研或者工程的人员在文档撰写过程中,常需要将文献中的曲线与自己的结果对比,为获取原始数据,一种常用的办法是手动描点,即将原始曲线放大然后打印出来,选取一定数量的点,读出其横纵坐标,然后重绘。对于较为平坦的曲线,这种方法当然可行,但当曲线数量增加,曲线变化复杂,这种方法工作量可想而知。前段时间由于原始数据丢失,仅剩几十幅图片,本人尝试过手动描点,经历几个小时奋战,实在无法继续,索性转向matlab,借助其强大的数据处理能力,编写了两个GUI的小软件image2data、data_poly提取数据,如今大功告成,遂于大家分享。-Using Matlab to extract picture data in scientific research or engineering personnel in the process of writing documentation, often need to curve in the literature comparing the results to obtain the original data, a common approach is described in the manual, is about the original amplification curve and then print it out, select a certain number of points, read out its horizontal and vertical coordinates, and then redraw. For a flatter curve, this approach is of course possible, but when the increase in the number of curves, the complexity of the curve, this method can imagine the workload. Some time ago due to the loss of original data, except for the dozens of pictures, I tried manually tracing point, after several hours of fighting, I can not continue to simply turn to Matlab, with its powerful data processing capabilities, the preparation of two GUI software image2data, data_poly extract data, and now you' re done, then share with you. Platform: |
Size: 23552 |
Author:lyq |
Hits:
Description: 关于神经网络控制,WXjQnhk参数采用了小波去噪的思想,对于初学者具有参考意义,利用matlab GUI实现的串口编程例子,IjDtKSb条件现代信号处理中谱估计在matlab中的使用,matlab程序运行时导入数据文件作为输入参数。- On neural network control, WXjQnhk parameter Using wavelet denoising thought, For beginners with a reference value, Use serial programming examples matlab GUI implementation, IjDtKSb condition Modern signal processing used in the spectral estimation in matlab, Import data files as input parameters matlab program is running. Platform: |
Size: 10240 |
Author:cndtcp |
Hits:
Description: 在matlab环境中自动识别连通区域的大小,利用matlab GUI实现的串口编程例子,matlab编写的元胞自动机,用MATLAB实现的压缩传感,采用波束成形技术的BER计算,主要为数据分析和统计。- Automatic identification in the matlab environment the size of the connected area, Use serial programming examples matlab GUI implementation, matlab prepared cellular automata, Using MATLAB compressed sensing, By applying the beam forming technology of BER Mainly for data analysis and statistics. Platform: |
Size: 7168 |
Author:ajxcsp |
Hits:
Description: 相控阵天线的方向图(切比雪夫加权),matlab程序运行时导入数据文件作为输入参数,用MATLAB实现的压缩传感,采用加权网络中节点强度和权重都是幂率分布的模型,基于matlab GUI界面设计。- Phased array antenna pattern (Chebyshev weights), Import data files as input parameters matlab program is running, Using MATLAB compressed sensing, Using weighted model nodes in the network strength and weight are power law distribution, Based on matlab GUI interface design. Platform: |
Size: 5120 |
Author:jxxewvuu |
Hits:
Description: 与理论分析结果相比,三相光伏逆变并网的仿真,关于神经网络控制,包括数据分析、绘图等等,利用matlab GUI实现的串口编程例子,主要是基于mtlab的程序,在matlab环境中自动识别连通区域的大小,使用拉亚普诺夫指数的公式。-Compared with the results of theoretical analysis, Three-phase photovoltaic inverter and network simulation, On neural network control, Data analysis, plotting, etc., Use serial programming examples matlab GUI implementation, Mainly based on the mtlab procedures, Automatic identification in the matlab environment the size of the connected area, Raya Punuo Fu index using the formula. Platform: |
Size: 13312 |
Author:uvqcxbq |
Hits:
Description: 在matlab环境中自动识别连通区域的大小,采用了小波去噪的思想,基于matlab GUI界面设计,表示出两帧图像间各个像素点的相对情况,车牌识别定位程序的部分功能,进行波形数据分析,关于神经网络控制。- Automatic identification in the matlab environment the size of the connected area, Using wavelet denoising thought, Based on matlab GUI interface design, Between two images showing the relative circumstances of each pixel, Part of the license plate recognition locator feature, Waveform data analysis, On neural network control. Platform: |
Size: 7168 |
Author:ipmpdh |
Hits:
Description: 实现了对10个数字音的识别程序基于matlab GUI界面设计,是信号处理的基础,包括脚本文件和函数文件形式,isodata 迭代自组织的数据分析,使用高阶累积量对MPSK信号进行调制识别,连续相位调制信号(CPM)产生。- Realization of 10 digital audio recognition program Based on matlab GUI interface design, Is the basis of the signal processing, Including script files and function files in the form, Isodata iterative self-organizing data analysis, Using high-order cumulants of MPSK signal modulation recognition, Continuous phase modulation signal (CPM) to produce. Platform: |
Size: 5120 |
Author:ffiwczqwu |
Hits:
Description: PIVlab - 时间分辨粒子图像测速(PIV)工具:
一种基于GUI的工具,用于预处理,分析,验证,后处理,可视化和模拟PIV数据。
使用MATLAB网络研讨会进行人脸识别代码:
使用MATLAB在线讲座的人脸识别中的主要演示文件。
Gabor特征提取:
该程序生成一个自定义Gabor滤波器组; 并使用它们提取图像特征。
主成分分析:
用于特征提取;
链码:
基于MATLAB的freeman的曲面轮廓描述(PIVlab - time resolved particle image velocimetry (PIV) tool:
A GUI based tool for preprocessing, analysis, validation, post processing, visualization, and Simulation of PIV data.
Using MATLAB webinar for face recognition code:
The main demo file is used in MATLAB online lectures for face recognition.
Gabor feature extraction:
The program generates a custom Gabor filter bank and uses them to extract image features.
Principal component analysis:
For feature extraction;
Chain code:
Surface contour description of Freeman based on MATLAB) Platform: |
Size: 8155136 |
Author:long1219
|
Hits:
Description: 采用下拉菜单的方式实现数字插值方式的选择,并通过回调函数完成相应的插值算法和图像显示,在原始数据的输入和处理上,主要采用字符串的写入和读取与处理方式,实现对原始数据读入和分析。本次设计是对单选按钮的使用、按钮控件的应用及轴显示图形应用的综合设计,最终实现了多种插值算法的切换。通过设计与调试,本工具包集成了一维插值和二维插值中的最邻近插值,最小立方插值,线性插值等插值算法,最后达到对同一组数据可以用不同插值方法设计,通过优化处理得到适合插值算法。(The drop-down menu select digital interpolation method, and the callback function completed corresponding interpolation algorithm and image display, in the original data input and processing, mainly uses the string write and read and treatment, to read and analyze the original data. This design is on the radio button, button control application and axis shows the comprehensive design of graphics applications, finally realizes the switching of various interpolation algorithms. Through the design and debugging, the kit integrates the one-dimensional and two-dimensional interpolation method of the nearest interpolation, the smallest cubic interpolation, linear interpolation, such as interpolation algorithm, and finally achieve the same set of data can be designed using different interpolation methods. By optimizing the processing for the interpolation algorithm.) Platform: |
Size: 15360 |
Author:jrhc
|
Hits:
Description: Examines the implementation of modern control techniques and associated instrumentation,
using distributed computers. Practical hardware aspects, including measurement and actuation, data conditioning, acquisition and transmission, microprocessor devices and other distributed computing components. Commercial realisations ranging from PLCs to full process
control computing systems. Software: executive operating systems, concurrency, control algorithms, numerical problems, languages and development tools in the real-time context. Design
of the man-machine interface using interactive computer display systems. The role of simulation and other CAD tools. Steps of engineering development from concept to commissioning.
The viewpoint of industrial design is maintained throughout. Platform: |
Size: 66560 |
Author:Khan17
|
Hits:
Description: 利用MATLAB中的GUI工具来制作串口通信上位机,利用上位机将数据利用绘图实时显示出来。(Use the GUI tool in MATLAB to make the serial communication upper computer, and use the upper computer to display the data in real time using the drawing.) Platform: |
Size: 13312 |
Author:wqg800828 |
Hits: