ionocon.m

来自「GPS TOOLBOX包含以下内容: 1、GPS相关常量和转换因子; 2、角」· M 代码 · 共 25 行

M
25
字号
%                             ionocon.m
%  Scope:   This MATLAB macro sets the Klobuchar model iono constants.
%  Usage:   ionocon
%  Description of global parameters:
%           alpha  - output, array with 4 components storing the Klobuchar
%                    model alpha constants 
%           beta   - output, array with 4 components storing the Klobuchar
%                    model beta constants
%  Remarks: 1) The constants are taken from satellite 26, subframe 4, page 18,
%              date 5/20/1994.
%           2) The indexes of the arrays alpha and beta are greater than the
%              indexes defined by Klobuchar model by 1 (because Matlab does 
%              not allow a zero index).
%  Last update: 07/30/99
%  Copyright (C) 1999 by LL Consulting. All Rights Reserved.

alpha(1) = 1.0244e-8;
alpha(2) = 2.235e-8;
alpha(3) = -5.96e-8;
alpha(4) = -1.192e-7;
beta(1) =  96256.;
beta(2) =  131072.;
beta(3) =  -65536.;
beta(4) =  -589824.;

⌨️ 快捷键说明

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