Changeset 6363 in ntrip for trunk/BNC/src/orbComp
- Timestamp:
- Dec 1, 2014, 9:49:21 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/orbComp/sp3Comp.cpp
r6362 r6363 188 188 // Estimate Parameters 189 189 // ------------------- 190 ColumnVector xx = NN.i() * bb; 190 ColumnVector xx; 191 try { 192 xx = NN.i() * bb; 193 } 194 catch (Exception& exc) { 195 for (int ii = 1; ii <= NN.Nrows(); ii++) { 196 NN(ii,ii) += 1e-4; 197 } 198 xx = NN.i() * bb; 199 } 191 200 192 201 // Compute clock residuals
Note:
See TracChangeset
for help on using the changeset viewer.