VerbesserungV2_NeuronetzV2_Fertig
This commit is contained in:
parent
47c68dda83
commit
03a904f021
15
matrix.c
15
matrix.c
@ -7,12 +7,15 @@
|
||||
|
||||
Matrix createMatrix(unsigned int rows, unsigned int cols)
|
||||
{
|
||||
Matrix m;
|
||||
m.rows = rows;
|
||||
m.cols = cols;
|
||||
/* calloc initialisiert den Speicher mit 0 */
|
||||
m.buffer = (MatrixType*)calloc(rows * cols, sizeof(MatrixType));
|
||||
return m;
|
||||
Matrix m = {NULL,0,0};
|
||||
if (rows > 0 && cols > 0) {
|
||||
m.rows = rows;
|
||||
m.cols = cols;
|
||||
/* calloc initialisiert den Speicher mit 0 */
|
||||
m.buffer = (MatrixType*)calloc(rows * cols, sizeof(MatrixType));
|
||||
}
|
||||
return m;
|
||||
|
||||
}
|
||||
|
||||
void clearMatrix(Matrix *matrix)
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user