解不等式的图解法
1、命令行键入:% Define the meshx = 0:0.16:5;y = 0:0.16:5;[xx,yy] = meshgrid(x,y);% The plotzz = xx.^yy-yy.^xx;h = surf(x,y,zz);% Set the properties of the ploth.EdgeColor = [0.7 0.7 0.7];view(20,50);colormap(hsv);title('z = x^y-y^x');xlabel('x');ylabel('y');hold on;
2、按“Enter”键。如图1所示。

5、命令行键入:plot([0:5 2 4],[0:5 4 2],'r.','MarkerSize',25);
6、按“Enter”键。如图3所示。

9、命令行键入:e = exp(1);e^pipi^e
10、按“Enter”键。如图5所示。
