马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?我要加入
x
我这个插值程序哪儿错了,求助
%tnterp2插值(二维插值)
width=1:5;
depth=1:3;
temps=[82 81 80 82 84;79 63 61 65 81;84 84 82 85 86];%data
di=linspace(1,3,20);
wi=linspace(1,5,20);
zcubic=interp2(width,depth,temps,wi,di,'cubic'); %cubic
mesh(wi,di,zcubic);
xlabel('Width of Plate'),ylabel('Depth of Plate');
zlabel('Degrees Celsius');axis('ij');grid on; |