generated from freudenreichan/info2Praktikum-NeuronalesNetz
Compare commits
2 Commits
6524bf95e4
...
0a549b7e0d
| Author | SHA1 | Date | |
|---|---|---|---|
| 0a549b7e0d | |||
| c99db0f96c |
15
matrix.c
15
matrix.c
@ -108,11 +108,17 @@ 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++) {
|
||||
@ -121,11 +127,8 @@ 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 * matrix1.cols + j] = value;
|
||||
result.buffer[i * result.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