generated from freudenreichan/info2Praktikum-NeuronalesNetz
Compare commits
No commits in common. "0a549b7e0d4ea00d720af6545e1573f3a25ab830" and "6524bf95e4348863ab9d874b680cca396bf09859" have entirely different histories.
0a549b7e0d
...
6524bf95e4
15
matrix.c
15
matrix.c
@ -108,17 +108,11 @@ Matrix add(const Matrix matrix1, const Matrix matrix2)
|
||||
Matrix multiply(const Matrix matrix1, const Matrix matrix2)
|
||||
{
|
||||
Matrix result;
|
||||
result.rows = 0;
|
||||
result.cols = 0;
|
||||
result.buffer = NULL;
|
||||
|
||||
if (matrix1.cols != matrix2.rows) {
|
||||
return result;
|
||||
}
|
||||
|
||||
result.rows = matrix1.rows;
|
||||
result.cols = matrix2.cols;
|
||||
|
||||
if (matrix1.rows == matrix2.cols) {
|
||||
|
||||
result.buffer = malloc(result.rows * result.cols * sizeof(MatrixType));
|
||||
|
||||
for(int i = 0; i < result.rows; i++) {
|
||||
@ -127,8 +121,11 @@ Matrix multiply(const Matrix matrix1, const Matrix matrix2)
|
||||
for(int k = 0; k < matrix1.cols; k++) {
|
||||
value += matrix1.buffer[i * matrix1.cols + k] * matrix2.buffer[k * matrix2.cols + j];
|
||||
}
|
||||
result.buffer[i * result.cols + j] = value;
|
||||
result.buffer[i * matrix1.cols + j] = value;
|
||||
}
|
||||
}
|
||||
return result;
|
||||
}
|
||||
printf("Die angegebenen Matrizen haben keine passenden Dimensionen für die Multiplikation");
|
||||
return result;
|
||||
}
|
||||
Loading…
x
Reference in New Issue
Block a user