accum0.m
来自「it is a source code from gps toolbox」· M 代码 · 共 13 行
M
13 行
function accum0(ATA_to_add, ATb_to_add)
%ACCUM0 Accumulates the contribution of observations from
% one epoch. The result is output under the same name.
%Kai Borre 03-24-96
%Copyright (c) by Kai Borre
%$Revision: 1.0 $ $Date: 1997/09/23 $
global ATA ATb
ATA = ATA+ATA_to_add;
ATb = ATb+ATb_to_add;
%%%%%%% end accum0.m %%%%%%%%%%%%%
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?