- Timestamp:
- Dec 2, 2005, 12:52:12 AM (17 years ago)
- Location:
- branches/better_matrix_class/lib/gslapi
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/better_matrix_class/lib/gslapi/matrix.cc
r417 r418 148 148 std::ostream& operator<<(std::ostream& s, const matrix& m) 149 149 { 150 using namespace std; 151 s.setf( ios::dec ); 150 s.setf(std::ios::dec); 152 151 s.precision(12); 153 152 for(size_t i=0, j=0; i<m.rows(); i++) -
branches/better_matrix_class/lib/gslapi/vector.cc
r415 r418 201 201 std::ostream& operator<<(std::ostream& s, const vector& a) 202 202 { 203 s.setf(std::ios:: fixed);203 s.setf(std::ios::dec); 204 204 s.precision(12); 205 205 for (size_t j = 0; j < a.size(); ++j) {
Note: See TracChangeset
for help on using the changeset viewer.