📄 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 + -