Changeset 593 for trunk/c++_tools/gslapi
- Timestamp:
- Aug 25, 2006, 2:59:21 PM (16 years ago)
- Location:
- trunk/c++_tools/gslapi
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/c++_tools/gslapi/matrix.cc
r570 r593 231 231 s << m(i,j); 232 232 if (j<m.columns()-1) 233 s << "\t";233 s << s.fill(); 234 234 else if (i<m.rows()-1) 235 235 s << "\n"; -
trunk/c++_tools/gslapi/vector.cc
r581 r593 258 258 s << a[j]; 259 259 if ( (j+1)<a.size() ) 260 s << " ";260 s << s.fill(); 261 261 } 262 262
Note: See TracChangeset
for help on using the changeset viewer.