Changeset 3422 in ntrip
- Timestamp:
- Sep 11, 2011, 5:16:46 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/bncmodel.cpp
r3421 r3422 1232 1232 rememberState(epoData); 1233 1233 1234 ColumnVector dx;1235 1236 1234 QString lastOutlierPrn; 1237 1235 … … 1287 1285 // Compute Filter Update 1288 1286 // --------------------- 1287 ColumnVector dx; 1289 1288 kalman(AA, ll, PP, _QQ, dx); 1290 1291 1289 ColumnVector vv = ll - AA * dx; 1292 1290 … … 1307 1305 // ------------------- 1308 1306 if (lastOutlierPrn.isEmpty()) { 1307 1308 QVectorIterator<bncParam*> itPar(_params); 1309 while (itPar.hasNext()) { 1310 bncParam* par = itPar.next(); 1311 par->xx += dx(par->index); 1312 } 1313 1309 1314 if (!_usePhase || iPhase == 1) { 1310 1311 QVectorIterator<bncParam*> itPar(_params);1312 while (itPar.hasNext()) {1313 bncParam* par = itPar.next();1314 par->xx += dx(par->index);1315 }1316 1317 1315 if (_outlierGPS.size() > 0 || _outlierGlo.size() > 0) { 1318 1316 _log += "Neglected PRNs: ";
Note:
See TracChangeset
for help on using the changeset viewer.