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

📄 q2534.m

📁 电路与系统专业的matlab程序。有很多经典的实例。
💻 M
字号:
%色彩的渲染
clf;echo on
x=-6:0.4:6;y=x;
[x,y]=meshgrid(x,y);
r=sqrt(x.^2+y.^2)+eps;
z=sin(r)./r;
surf(z);colormap(hsv);
shading flat
pause
figure(2)
surf(z);%colormap(hsv);
colormap(copper);
shading interp;

pause
figure(3)
surf(z);colormap(hsv);
shading faceted;

echo off

⌨️ 快捷键说明

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