af_trpmops.m
来自「gps“可用性”matlab代码 Matlab Algorithm Avail」· M 代码 · 共 22 行
M
22 行
function sig2_trop = af_wrstrpmops(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 *%*************************************************************************%% tropo confidence bound (variance)% El can be any n-by-m matrix of elevations.% Returns tropo variance for each elevation element. % NaN is returned for NaN elevations. idxvis = find(~isnan(El));sig2_trop = repmat(NaN,size(El));%from MOPSsig2_trop(idxvis) = (0.12*1.001)^2 ./ (0.002001+sin(El(idxvis)).^2);
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?