Changeset 2245 in ntrip
- Timestamp:
- Jan 12, 2010, 5:13:10 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/bncmodel.cpp
r2244 r2245 633 633 ll(iObs) = satData->L3 - rhoCmp; 634 634 635 cout.setf(ios::fixed);636 cout << prn.toAscii().data() << " "637 << setprecision(3) << rhoCmp << " "638 << setprecision(3) << satData->P3 << " "639 << setprecision(3) << satData->L3 << endl;640 641 635 PP(iObs,iObs) = 1.0 / (sig_L3_GLO * sig_L3_GLO); 642 636 for (int iPar = 1; iPar <= _params.size(); iPar++) { … … 648 642 } 649 643 650 //// beg test 651 //double rhoCmp = cmpValue(satData); 652 //cout.setf(ios::fixed); 653 //cout << prn.toAscii().data() << " " 654 // << setprecision(3) << rhoCmp << " " 655 // << setprecision(3) << satData->P3 << " " 656 // << setprecision(3) << satData->L3 << " " << endl; 657 // 658 ////// end test 659 } 660 } 661 662 cout << endl; 644 cout.setf(ios::fixed); 645 cout << "iObs = " << iObs << " " << prn.toAscii().data() << " " 646 << setprecision(3) << rhoCmp << " " 647 << setprecision(3) << satData->P3 << " " 648 << setprecision(3) << satData->L3 << " " 649 << ll(iObs) << endl; 650 } 651 } 663 652 664 653 // Compute Filter Update … … 672 661 dx = _QQ * ATP * ll; 673 662 vv = ll - AA * dx; 674 cout << "vv = " << endl; 675 cout << vv.t() << endl; 663 664 // //// beg test 665 // { 666 // cout.setf(ios::fixed); 667 // ColumnVector vv_code(epoData->sizeGPS()); 668 // ColumnVector vv_phase(epoData->sizeGPS()); 669 // ColumnVector vv_glo(epoData->sizeGlo()); 670 // 671 // for (int iobs = 1; iobs <= epoData->sizeGPS(); ++iobs) { 672 // vv_code(iobs) = vv(2*iobs-1); 673 // vv_phase(iobs) = vv(2*iobs); 674 // } 675 // for (int iobs = 1; iobs <= epoData->sizeGlo(); ++iobs) { 676 // vv_glo(iobs) = vv(2*epoData->sizeGPS()+iobs); 677 // } 678 // 679 // cout << "residuals code " << setprecision(3) << vv_code.t(); 680 // cout << "residuals phase " << setprecision(3) << vv_phase.t(); 681 // cout << "residuals glo " << setprecision(3) << vv_glo.t(); 682 // } 683 // //// end test 676 684 677 685 } while (outlierDetection(QQsav, vv, epoData->satDataGPS,
Note:
See TracChangeset
for help on using the changeset viewer.