generated from freudenreichan/info2Praktikum-NeuronalesNetz
Added struct Matrix in matrix.h, matrix.c
This commit is contained in:
parent
8286702cd3
commit
ebc5ff0216
7
matrix.c
7
matrix.c
@ -4,6 +4,13 @@
|
||||
|
||||
// TODO Matrix-Funktionen implementieren
|
||||
|
||||
typedef struct Matrix {
|
||||
unsigned int rows;
|
||||
unsigned int cols;
|
||||
MatrixType* buffer;
|
||||
} Matrix;
|
||||
|
||||
|
||||
Matrix createMatrix(unsigned int rows, unsigned int cols)
|
||||
{
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user