diff options
| author | Soikk | 2022-08-24 17:56:19 +0200 |
|---|---|---|
| committer | Soikk | 2022-08-24 17:56:19 +0200 |
| commit | 5c17bf68372b1f01be06563ef52ed694ce10e7d5 (patch) | |
| tree | 54dc39dfc542c7c67cb199f86c8b3f7d200e993e /matrix.c | |
| parent | 0a64f5fa59f7dea706c9ee8a8970d150de426bfa (diff) | |
| download | soikk-matrix-5c17bf68372b1f01be06563ef52ed694ce10e7d5.tar.xz soikk-matrix-5c17bf68372b1f01be06563ef52ed694ce10e7d5.tar.zst | |
Removed placeholder function
Diffstat (limited to 'matrix.c')
| -rw-r--r-- | matrix.c | 9 |
1 files changed, 0 insertions, 9 deletions
@@ -1,15 +1,6 @@ #include "matrix.h" -void showMatrix(matrix *m){ - for(int i = 0; i < m->rows; ++i){ - for(int j = 0; j < m->cols; ++j){ - printf("%.1f\t", m->data[i][j]); - } - printf("\n"); - } -} - matrix *newMatrix(int rows, int cols){ matrix *m = malloc(sizeof(matrix)); m->rows = rows; |
