Niet af
Fork of Matrix by
Revision 6:92115bd8c705, committed 2017-10-31
- Comitter:
- DiondeGreef
- Date:
- Tue Oct 31 19:43:29 2017 +0000
- Parent:
- 5:a4014ab0a8cf
- Commit message:
- Niet af
Changed in this revision
Matrix.cpp | Show annotated file Show diff for this revision Revisions of this file |
diff -r a4014ab0a8cf -r 92115bd8c705 Matrix.cpp --- a/Matrix.cpp Sun Oct 30 16:29:23 2011 +0000 +++ b/Matrix.cpp Tue Oct 31 19:43:29 2017 +0000 @@ -322,6 +322,7 @@ /// Prints out Matrix. void Matrix::print() const { + printf("\n\r"); for( int i = 0; i < _nRows; i++ ) { for( int j = 0; j < _nCols; j++ ) @@ -329,7 +330,7 @@ printf( "%.3f, ",_matrix[i][j] ); } - printf( "\n" ); + printf( "\r\n" ); } }