generated from freudenreichan/info2Praktikum-NeuronalesNetz
matrix.h aktualisiert
matrix.h hinzugefügt
This commit is contained in:
parent
57857eb5d9
commit
c928a8433a
6
matrix.h
6
matrix.h
@ -6,7 +6,11 @@
|
|||||||
typedef float MatrixType;
|
typedef float MatrixType;
|
||||||
|
|
||||||
// TODO Matrixtyp definieren
|
// TODO Matrixtyp definieren
|
||||||
|
typedef struct {
|
||||||
|
MatrixType *buffer;
|
||||||
|
MatrixType rows;
|
||||||
|
MatrixType cols;
|
||||||
|
}Matrix;
|
||||||
|
|
||||||
Matrix createMatrix(unsigned int rows, unsigned int cols);
|
Matrix createMatrix(unsigned int rows, unsigned int cols);
|
||||||
void clearMatrix(Matrix *matrix);
|
void clearMatrix(Matrix *matrix);
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user