normals.m

来自「gps定位程序源代码」· M 代码 · 共 13 行

M
13
字号
function  [ATA,ATb] = normals(ATA,ATb,A,omc,var)
%NORMALS Accumulates the contribution of one	observation equation and
%        adds it to the coefficient matrix ATA and the right side ATb.
%	      The accumulated result is output under the same name.

%Kai Borre 09-16-96
%Copyright (c) by Kai Borre
%$Revision: 1.0 $  $Date: 1997/09/26  $

ATb = ATb + A*omc/var;
ATA = ATA + A*A'/var;
%%%%%%% end normals.m  %%%%%%%%%%%%%

⌨️ 快捷键说明

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