?? ex2418.m
字號(hào):
%例24-18 設(shè)置視角
%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]))
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -