Changeset 9433 in ntrip
- Timestamp:
- May 19, 2021, 1:29:07 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/PPP/pppFilter.h
r9431 r9433 135 135 t_irc computeTrafoMatrix() { 136 136 if (((_AA2.t() * _AA2)).Determinant() == 0.0) { 137 LOG << "(_AA2.t() * _AA2).inv() is singular" << endl;137 LOG << "(_AA2.t() * _AA2).inv() is singular" << std::endl; 138 138 return failure; 139 139 } … … 145 145 for (int rr = 0; rr < nRow; rr++) { 146 146 for (int cc = 0; cc < nCol; cc++) { 147 LOG << s etw(6) <<setprecision(3) << X[rr][cc] << " ;";147 LOG << std::setw(6) << std::setprecision(3) << X[rr][cc] << " ;"; 148 148 } 149 LOG << endl;150 } 151 LOG << endl;149 LOG << std::endl; 150 } 151 LOG << std::endl; 152 152 } 153 153 private:
Note:
See TracChangeset
for help on using the changeset viewer.