Changeset 8902 in ntrip


Ignore:
Timestamp:
Mar 18, 2020, 11:07:35 AM (4 years ago)
Author:
stuerze
Message:

upgrade to newmat11 library

Location:
trunk/BNC/src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/bncephuser.cpp

    r8851 r8902  
    206206  }
    207207
    208   double rr = xc.Rows(1,3).norm_Frobenius();
     208  double rr = xc.Rows(1,3).NormFrobenius();
    209209
    210210  const double MINDIST = 2.e7;
     
    281281      dt += 604800.0;
    282282    }
    283     double diff  = (xc.Rows(1,3) - xcL.Rows(1,3)).norm_Frobenius();
     283    double diff  = (xc.Rows(1,3) - xcL.Rows(1,3)).NormFrobenius();
    284284    double diffC = fabs(xc(4) - xcL(4)) * t_CST::c;
    285285
  • trunk/BNC/src/bncsp3.cpp

    r8483 r8902  
    198198    in >> sp3Sat->_prn >> sp3Sat->_xyz(1) >> sp3Sat->_xyz(2) >> sp3Sat->_xyz(3) >> sp3Sat->_clk;
    199199
    200     if (sp3Sat->_xyz.norm_Frobenius() == 0.0) {
     200    if (sp3Sat->_xyz.NormFrobenius() == 0.0) {
    201201      delete sp3Sat;
    202202      continue;
Note: See TracChangeset for help on using the changeset viewer.