e_r_corr.m
来自「gps定位程序源代码」· M 代码 · 共 17 行
M
17 行
function X_sat_rot = e_r_corr(traveltime, X_sat)
%E_R_CORR Returns rotated satellite ECEF coordinates
% due to Earth rotation during signal travel time
%Kai Borre 10-10-96
%Copyright (c) by Kai Borre
%$Revision: 1.0 $ $Date: 1997/09/26 $
Omegae_dot = 7.292115147e-5; % rad/sec
omegatau = Omegae_dot*traveltime;
R3 = [ cos(omegatau) sin(omegatau) 0;
-sin(omegatau) cos(omegatau) 0;
0 0 1];
X_sat_rot = R3*X_sat;
%%%%%%%% end e_r_corr.m %%%%%%%%%%%%%%%%%%%%%
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?