搜索资源列表
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
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
function plot
- 绘制函数的图形 1) x~[0, 30] 2) x,y~[-2, 2] % 二维曲线 x = 0:30; % 冒号的功能… y = exp(-x/10).*sin(x); % 向量运算,点号的功能 plot(x, y) % 绘制二维曲线