( 1)编写一个 M 文件,画出下列分段函数所表示的曲面。
[X,Y]=meshgrid(-3:0.1:3);
T=X+Y;
if T>1
Z=0.54*exp(-0.75*X.^2-3.75*Y.^2-1.5*Y);
elseif -1<T<=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);
end
surf(X,Y,Z)
%plot3(X,Y,Z)
%mesh(X,Y,Z)






15457.0
117575.0
154.0
),(
5.175.375.0
6
5.175.375.0
22
22
22
yxe
yxe
yxe
yxp
yyx
yx
yyx
( 2)编写一个求圆的面积的函数文件。
function s=area(r)
% AREA For calculating the area of a round,
% area.m
s=pi*r^2;
( 3)编写一个求圆的面积的命令文件
Radius=input('Please input the radius,');
Area=pi*Radius^2;