《matlab使用教程.ppt》由会员分享,可在线阅读,更多相关《matlab使用教程.ppt(3页珍藏版)》请在三一办公上搜索。
Matlab工程应用基础Application of Matlab in Engineering,(1)编写一个 M 文件,画出下列分段函数所表示的曲面。X,Y=meshgrid(-3:0.1:3);T=X+Y;if T1 Z=0.54*exp(-0.75*X.2-3.75*Y.2-1.5*Y);elseif-1T=1 Z=0.7575*exp(-X.2-6*Y.2);else Z=0.5457*exp(-0.75*X.2-3.75*Y.2+1.5*Y);endsurf(X,Y,Z)%plot3(X,Y,Z)%mesh(X,Y,Z),(2)编写一个求圆的面积的函数文件。function s=area(r)%AREA For calculating the area of a round.%area.ms=pi*r2;(3)编写一个求圆的面积的命令文件 Radius=input(Please input the radius:);Area=pi*Radius2;,