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

📄 ex2418.m

📁 数字信号处理的MATLAB实现
💻 M
字号:
%例24-18 设置视角
%Ex24-18 set the viewpoint
clear
close all
subplot(2,2,1)
ezmesh(@peaks);
view(3);
[a,b]=view;title(mat2str([a,b]))
subplot(2,2,2)
ezmesh(@peaks);
view(2);
[a,b]=view;title(mat2str([a,b]))
subplot(2,2,3)
ezmesh(@peaks);
view([30 45]);
[a,b]=view;title(mat2str([a,b]))
subplot(2,2,4)
ezmesh(@peaks);
view([1 1 sqrt(2)]);
[a,b]=view;title(mat2str([a,b]))

⌨️ 快捷键说明

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