]> git.xolatile.top Git - soikk-matrix.git/commitdiff
Removed placeholder function
authorSoikk <76824648+Soikk@users.noreply.github.com>
Wed, 24 Aug 2022 15:56:19 +0000 (17:56 +0200)
committerSoikk <76824648+Soikk@users.noreply.github.com>
Wed, 24 Aug 2022 15:56:19 +0000 (17:56 +0200)
matrix.c

index 3b915ebec5163b1734743066f963d83b7b3de34f..474772e22306ee35056964b06c1140b9a88c2da9 100644 (file)
--- a/matrix.c
+++ b/matrix.c
@@ -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;