Matrix Library. v1.6.4 + some changes

Files at this revision

API Documentation at this revision

Comitter:
saloutos
Date:
Thu Oct 01 04:34:47 2020 +0000
Parent:
6:0c77fd691ba8
Commit message:
added carriage return to print function

Changed in this revision

Matrix.cpp Show annotated file Show diff for this revision Revisions of this file
--- a/Matrix.cpp	Thu Oct 01 04:06:38 2020 +0000
+++ b/Matrix.cpp	Thu Oct 01 04:34:47 2020 +0000
@@ -334,7 +334,7 @@
             printf( "%.3f, ",_matrix[i][j] );
 
         }
-        printf( "\n" );
+        printf( "\n\r" );
     }
 }