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

📄 graf3_13.m

📁 天津大学matlab讲义MATLAB是一种用于算法开发,数据可视化,数据分析以及数值计算的高级技术计算语言和交互式环境.
💻 M
字号:
surf(peaks);
colormap(hsv)
title('hsv色图函数效果')
shading interp
pause
surf(peaks);
colormap(hot)
shading interp
title('hot色图函数效果')
pause
surf(peaks);
colormap(gray)
shading interp
title('gray色图函数效果')
pause
surf(peaks);
colormap(cool)
shading interp
title('cool色图函数效果')
pause
surf(peaks);
shading interp
colormap(bone)
title('bone色图函数效果')
shading interp
pause
surf(peaks);
colormap(copper)
title('copper色图函数效果')
shading interp
pause
surf(peaks);
colormap(pink)
title('pink色图函数效果')
shading interp
pause
surf(peaks);
colormap(flag)
shading interp
title('flag色图函数效果')
pause
surf(peaks);
colormap(jet)
shading interp
title('jet色图函数效果')
pause
surf(peaks);
colormap(prism)
shading interp
title('prism色图函数效果')
pause
surf(peaks);
cmap=[1,0,0;
      0,1,0;
      0,0,1];
colormap(cmap)
shading interp
title('自定义红绿蓝色图函数效果')

⌨️ 快捷键说明

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