my3plot.m

来自「a file for determining a polynomial degr」· M 代码 · 共 16 行

M
16
字号
x1=linspace(-10,10,100);
y1=linspace(-8,8,100);
[x y]=meshgrid(x1,y1);
z=exp(-x.^2-y.^2).*x;
subplot(2,3,1);
mesh(x,y,z);
subplot(2,3,2);
meshz(x,y,z);
subplot(2,3,3);
meshc(x,y,z);
subplot(2,3,4);
surf(x,y,z);
subplot(2,3,5);
surfl(x,y,z);
subplot(2,3,6);
plot3(x,y,z);

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?