- Timestamp:
- Mar 18, 2020, 11:07:35 AM (5 years ago)
- Location:
- trunk/BNC/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/bncephuser.cpp
r8851 r8902 206 206 } 207 207 208 double rr = xc.Rows(1,3). norm_Frobenius();208 double rr = xc.Rows(1,3).NormFrobenius(); 209 209 210 210 const double MINDIST = 2.e7; … … 281 281 dt += 604800.0; 282 282 } 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(); 284 284 double diffC = fabs(xc(4) - xcL(4)) * t_CST::c; 285 285 -
trunk/BNC/src/bncsp3.cpp
r8483 r8902 198 198 in >> sp3Sat->_prn >> sp3Sat->_xyz(1) >> sp3Sat->_xyz(2) >> sp3Sat->_xyz(3) >> sp3Sat->_clk; 199 199 200 if (sp3Sat->_xyz. norm_Frobenius() == 0.0) {200 if (sp3Sat->_xyz.NormFrobenius() == 0.0) { 201 201 delete sp3Sat; 202 202 continue;
Note:
See TracChangeset
for help on using the changeset viewer.