Compare commits

..

No commits in common. "8676389e6212f4098809478c76db9a6662bb4728" and "9bd9cd79853f026b7ca57a8187895d19c285eb3a" have entirely different histories.

2 changed files with 10 additions and 13 deletions

View File

@ -74,6 +74,7 @@ Matrix add(const Matrix matrix1, const Matrix matrix2)
Matrix multiply(const Matrix matrix1, const Matrix matrix2)
{
Matrix result;
result.rows = matrix1.rows;
result.cols = matrix2.cols;

View File

@ -7,11 +7,7 @@ typedef float MatrixType;
// TODO Matrixtyp definieren
typedef struct Matrix{
unsigned int rows;
unsigned int cols;
MatrixType* buffer;
}Matrix;
typedef struct Matrix Matrix;