⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 my3plot.m

📁 a file for determining a polynomial degrees
💻 M
字号:
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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -