load first commit
This commit is contained in:
parent
424035b1b2
commit
614df3c4a1
6 changed files with 106 additions and 20 deletions
2
matrix.h
2
matrix.h
|
|
@ -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);
|
||||
|
|
|
|||
Reference in a new issue