收藏 分享(赏)

实验6 Matlab绘图.doc

上传人:eukav 文档编号:4293875 上传时间:2018-12-21 格式:DOC 页数:11 大小:380.50KB
下载 相关 举报
实验6 Matlab绘图.doc_第1页
第1页 / 共11页
实验6 Matlab绘图.doc_第2页
第2页 / 共11页
实验6 Matlab绘图.doc_第3页
第3页 / 共11页
实验6 Matlab绘图.doc_第4页
第4页 / 共11页
实验6 Matlab绘图.doc_第5页
第5页 / 共11页
点击查看更多>>
资源描述

1、实验 6 Matlab 绘图一、实验目的1、掌握绘制二维图形的常用函数。2、掌握绘制三维图形的常用函数。3、掌握图像读写函数和显示函数的使用方法。二、实验内容1、已知 ,完成以下操作:213),2cos(,2 yxyx(1)在同一坐标系下,用不同的颜色和线型绘制三条曲线。(2)在同一个图形窗口中,以子图的形式绘制三条曲线。(3)在同一个图形窗口中,以子图的形式,分别用条形图、阶梯图、杆图和填充图绘制三条曲线。解答:(1)x=-10:0.001:10;y1=x.2;y2=cos(2*x);y3=y1.*y2;plot(x,y1,x,y2,x,y3)(2) x=-10:0.001:10;y1=x.

2、2;y2=cos(2*x);y3=y1.*y2;subplot(1,3,1);plot(x,y1);subplot(1,3,2);plot(x,y2);subplot(1,3,3);plot(x,y3);(3)x=-10:0.01:10;y1=x.2;y2=cos(2*x);y3=y1.*y2;subplot(2,2,1);bar3(x,y1);hold onbar3(x,y2);hold onbar3(x,y3);hold onview(90,0);subplot(2,2,2);stairs(x,y1);hold onstairs(x,y2);hold onstairs(x,y3);hold

3、 onsubplot(2,2,3);stem(x,y1); hold onstem(x,y2);hold onstem(x,y3);hold onsubplot(2,2,4);fill(x,y1,x,y2,x,y3);2、设 绘制 和 曲线,并给20x )sinl(5.01xy xycos)1in35.0(22图形添加图形标注(title(绘图曲线) ,xlabel(x 轴) , ylabel (y 轴) ,text(在合适位置标注两曲线名) ,legend (y1,y2 ) ,axis(指定范围) ,显示网格,不显示边框) 。解答:x=0:0.001:2*pi;y1=0.5*log(x+si

4、n(pi*x);y2=(0.5+3*sin(x)./(1+x.2).*cos(x);plot(x,y1,x,y2)title(绘图曲线);xlabel(x 轴);ylabel(y 轴);text(x(2000),y1(2000),leftarrow y1)text(x(2000),y2(2000),leftarrow y2)legend(y1,y2);axis(0 2*pi -inf inf);grid on;box off;3、绘制曲面图形,在同一窗口不同子图上分别采用 faceted,flat,interp 进行着色处理。230sincotsztyx,解答:S=linspace(0,0.5

5、*pi,100);T=linspace(0,1.5*pi,100);s,t=meshgrid(S,T);x=cos(s).*cos(t);y=cos(s).*sin(t);z=sin(s);surf(x,y,z);shading facetedfacetedflatinterp4、绘制函数的曲面图和等高线。42cos5yxez其中 的 21 个值均匀分布在-5,5范围, 的 31 个值均匀分布在0,10,要求使x用 subplot(1,2,1)和 subplot(1,2,2)将生产的曲面图和等高线图画在同一窗口上。绘制曲面时采用 hot(5)色图,标注标题(曲面图),标注各个坐标轴,观察角度为

6、(-20,20) 。等高线图标注标题(等高线图),标注各个坐标轴,观察角度为(0,90) 。解答:X=linspace(-5,5,21);Y=linspace(0,10,31);x,y=meshgrid(X,Y);z=5*cos(x).*cos(y).*exp(-sqrt(x.2+y.2)/4);subplot(1,2,1);surf(x,y,z);colormap(hot(5);title(曲面图);xlabel(x 轴);ylabel(y 轴);zlabel(z 轴);view(-20,20);subplot(1,2,2);contour3(x,y,z);title(等高线图);xlabe

7、l(x 轴);ylabel(y 轴);zlabel(z 轴);view(0,90);5、假设 的 21 个值均匀分布在-5,5范围, 的 31 个值均匀分布在0,10,曲x y面方程 满足:z42cosyxez(1)绘制函数的曲面图,并且将它绕 z 轴旋转。(2)绘制函数的曲面图,采用 imwrite 函数将绘制的曲面保存在 c:目录下,文件名为 tu1.jpg。采用 saveas 函数将绘制的曲面保存在 c:目录下,文件名为tu1.bmp。检查 c:目录是否存在这两个文件。(3)采用 imread 函数读取 tu1.jpg 并分别在同一窗口不同子窗口用 image 函数、imshow 显示

8、tu1.jpg 图像。解答:(1) X=linspace(-5,5,21);Y=linspace(0,10,31);x,y=meshgrid(X,Y);z=cos(x).*cos(y).*exp(-sqrt(x.2+y.2)/4);surf(x,y,z)view(150,0);(2)X=linspace(-5,5,21);Y=linspace(0,10,31);x,y=meshgrid(X,Y);z=cos(x).*cos(y).*exp(-sqrt(x.2+y.2)/4);surf(x,y,z)view(150,0);data,map=getframe;imwrite(data,c:tu1.

9、jpg,jpg);使用 MATLAB2012b,出现下面问题,改存在系统默认目录中Error using imwrite (line 459)Unable to open file “c:tu1.jpg“ for writing. You may not have write permission.Error in f (line 8)imwrite(data,c:tu1.jpg,jpg);info=imfinfo(tu1.jpg)info = Filename: G:Program Filesmatlab2012bR2012bbintu1.jpgFileModDate: 21-Apr-201

10、3 14:55:45FileSize: 31215Format: jpgFormatVersion: Width: 435Height: 343BitDepth: 24ColorType: truecolorFormatSignature: NumberOfSamples: 3CodingMethod: HuffmanCodingProcess: SequentialComment: saveas(gcf,tu1.bmp,bmp)imfinfo(tu1.bmp)ans = Filename: G:designmatlabtu1.bmpFileModDate: 21-Apr-2013 15:11

11、:36FileSize: 236278Format: bmpFormatVersion: Version 3 (Microsoft Windows 3.x)Width: 560Height: 420BitDepth: 8ColorType: indexedFormatSignature: BMNumColormapEntries: 256Colormap: 256x3 doubleRedMask: GreenMask: BlueMask: ImageDataOffset: 1078BitmapHeaderSize: 40NumPlanes: 1CompressionType: noneBitmapSize: 235200HorzResolution: 0VertResolution: 0NumColorsUsed: 0NumImportantColors: 0(3)cdata=imread(tu1.jpg);subplot(1,2,1);image(cdata);subplot(1,2,2);imshow(cdata);

展开阅读全文
相关资源
猜你喜欢
相关搜索

当前位置:首页 > 中等教育 > 中学实验

本站链接:文库   一言   我酷   合作


客服QQ:2549714901微博号:道客多多官方知乎号:道客多多

经营许可证编号: 粤ICP备2021046453号世界地图

道客多多©版权所有2020-2025营业执照举报