forked from freudenreichan/info2Praktikum-NeuronalesNetz
adapt matrix struct to existing tests
This commit is contained in:
parent
7ea80137b0
commit
633ee723f4
3
matrix.h
3
matrix.h
@ -8,10 +8,9 @@ typedef float MatrixType;
|
|||||||
// Matrixtyp
|
// Matrixtyp
|
||||||
typedef struct Matrix
|
typedef struct Matrix
|
||||||
{
|
{
|
||||||
|
MatrixType *buffer;
|
||||||
size_t rows;
|
size_t rows;
|
||||||
size_t cols;
|
size_t cols;
|
||||||
MatrixType *buffer;
|
|
||||||
|
|
||||||
} Matrix;
|
} Matrix;
|
||||||
|
|
||||||
Matrix createMatrix(unsigned int rows, unsigned int cols);
|
Matrix createMatrix(unsigned int rows, unsigned int cols);
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user