Changeset 6363 in ntrip


Ignore:
Timestamp:
Dec 1, 2014, 9:49:21 PM (9 years ago)
Author:
mervart
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/orbComp/sp3Comp.cpp

    r6362 r6363  
    188188  // Estimate Parameters
    189189  // -------------------
    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  }
    191200
    192201  // Compute clock residuals
Note: See TracChangeset for help on using the changeset viewer.