af_cnmpaad.m

来自「WAAS matlab仿真程序 maast」· M 代码 · 共 28 行

M
28
字号
function sig2=af_usrcnmpaad(del_t,el)%*************************************************************************%*     Copyright c 2001 The board of trustees of the Leland Stanford     *%*                      Junior University. All rights reserved.          *%*     This script file may be distributed and used freely, provided     *%*     this copyright notice is always kept with it.                     *%*                                                                       *%*     Questions and comments should be directed to Todd Walter at:      *%*     twalter@stanford.edu                                              *%*************************************************************************%%SIG2_AAD calculate airborne psueudorange confidence (variance) per LAAS MASPS%SIG2=SIG2_AAD(DEL_T, EL)%   DEL_T is the track time in seconds since last cycle slip and is not used%   EL is the elevation angle in radians%   SIG2 is the psueudorange confidence (variance) in meters^2 %   per LAAS MASPS DO-245%% SEE ALSO INIT_AADA INIT_AADB%created 24 April, 2001 by Todd Walterglobal AAD_A0 AAD_A1 AAD_THETA0sig2 = (AAD_A0 + AAD_A1*exp(-el/AAD_THETA0)).^2;   

⌨️ 快捷键说明

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