介绍了matlab作图的各种方法

源代码在线查看: liti10.m

软件大小: 270 K
上传用户: lqlm521
关键词: matlab
下载地址: 免注册下载 普通下载 VIP

相关代码

				x=-3:0.1:3;   y=1:0.1:5;
				     [X,Y]=meshgrid(x,y);
				     Z=(X+Y).^2;
				     subplot(2,2,1); mesh(X,Y,Z)
				     subplot(2,2,2);mesh(X,Y,Z);view(50,-34)
				     subplot(2,2,3);mesh(X,Y,Z);view(-60,70) 
				     subplot(2,2,4);mesh(X,Y,Z);view(0,1,1)
				    			

相关资源