load first commit

This commit is contained in:
Thomas 2023-09-19 21:53:07 +02:00
parent 424035b1b2
commit 614df3c4a1
6 changed files with 106 additions and 20 deletions

View file

@ -5,6 +5,8 @@ typedef struct {
double **numbers;
} Matrix;
static const int scaling_value = 10000;
// operational functions
Matrix* matrix_create(int rows, int columns);
void matrix_fill(Matrix* matrix, double value);