Changeset 3477 in ntrip for trunk/BNC


Ignore:
Timestamp:
Oct 14, 2011, 9:13:14 PM (13 years ago)
Author:
mervart
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/combination/bnccomb.cpp

    r3476 r3477  
    878878  dx = _QQ * bb;
    879879
     880  ColumnVector vv = ll - AA * dx;
     881
     882  int     maxResIndex;
     883  double  maxRes = vv.maximum_absolute_value1(maxResIndex);   
     884  out.setRealNumberNotation(QTextStream::FixedNotation);
     885  out.setRealNumberPrecision(3); 
     886  out << _resTime.datestr().c_str() << " " << _resTime.timestr().c_str()
     887      << " Maximum Residuum " << maxRes << ' '
     888      << corrs()[maxResIndex-1]->acName << ' ' << corrs()[maxResIndex-1]->prn;
     889
    880890  return success;
    881891}
Note: See TracChangeset for help on using the changeset viewer.