Matlab教程(含M文件)

源代码在线查看: wendu.m

软件大小: 1895 K
上传用户: xeul7957
关键词: Matlab 教程
下载地址: 免注册下载 普通下载 VIP

相关代码

				x=1:5;
				y=1:3;
				temps=[82 81 80 82 84;79 63 61 65 81;84 84 82 85 86];
				mesh(x,y,temps)
				pause
				
				xi=1:0.2:5;
				yi=1:0.2:3;
				zi=interp2(x,y,temps,xi',yi,'cubic');
				figure(2)
				mesh(xi,yi,zi)
							

相关资源