?? viewfrom.m
字號:
function M = viewfrom(azimuth,elevation)
%
% Transformation to right-up-towardme coordinates
% from East-North-Up coordinates, as viewed from
% given azimuth (measured CCW from East)
% and elevation angle (measured up from E-N plane.
% All angles in radians.
%
sa = sin(azimuth);
ca = cos(azimuth);
se = sin(elevation);
ce = cos(elevation);
M = [-sa,ca,0;-ca*se,-sa*se,ce;ca*ce,sa*ce,se];
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -