搜索资源列表
A2008
- awimg=rgb2gray(im1) tic [accum, circen, cirrad] = CircularHough_Grd(rawimg, [20 30],5,50) circen toc figure(1) imagesc(accum) axis image title( Accumulation Array from Circular Hough Transform ) figure(2) imagesc(rawimg) co
080435
- 基于MATLAB的数学图形制作 过具体实例研究MATLAB绘制二维图形和三维图形的plot、ezplot、mesh、surf、ezmesh、ezsurf、 plot3等几个作图函数,说明它们的使用方法和技巧。-MATLAB-based graphical mathematical study of the production of any specific examples of MATLAB graphics drawing two-dimensional and three-dim
polar3d
- POLAR3D Plots a 3D polar surface. POLAR3D(Zin,theta_m ax,Rho_min,Rho_max,meshscale) plots the profiles a mesh plot for Zin between radii Rho_min and Rho_max for polar angles equally spaced between theta_min and theta_max. POLAR3D(Z
user
- 尝试制作界面菜单(uimenu)和上下文菜单(uicontextmenu、uimenu),兵士菜单项能够实现一定功能; 尝试使用menu函数实现简单功能; 为plot绘制的点型增加其他属性修改功能,如markerfacecolor和markersize等; 尝试实现mesh和surf的属性修改界面; 尽可能实现更多的GUI内容。-Trying to create interface menu (uimenu) and the context menu (uicontextmenu
meshgrid-and-other-plot-commands
- matlab中meshgrid命令的详解,以及plot3、mesh、surf、surfc、surfl、waterfall等命令的用法-The explanation of meshgrid command in matlab, and the usage of plot3, mesh, surf, surfc, surfl, waterfall and other commands
graphic-model
- 绘制三维图,绘制三维网格图,并在xoy平面绘制相应的等高线,绘制三维网格图,并在网格图周围绘制垂直水平面的参考平面,用surf绘制高斯分布函数的曲面图,利用peaks函数产生的数据绘制其带状图,绘制空间立体的切片图,绘制三维瀑布图 ,绘制等值线图,绘制球面图-Draw a three-dimensional map, draw a three-dimensional grid map and draw the corresponding contour xoy plane, draw a thr
plot3demo
- 我自己的各种plot使用范例 三维绘图函数示例 surf函数:用颜色填充mesh网格 指定区域合并 -My various plot using the examples of three-dimensional graphics functions example the surf function: color fill the designated area of the mesh grid merger
function plot
- 绘制函数的图形 1) x~[0, 30] 2) x,y~[-2, 2] % 二维曲线 x = 0:30; % 冒号的功能… y = exp(-x/10).*sin(x); % 向量运算,点号的功能 plot(x, y) % 绘制二维曲线