Compare commits

..

2 Commits

Author SHA1 Message Date
AD005\z004z3ez
782bcdc350 Merge branch 'get_matrix' 2025-11-11 16:11:10 +01:00
AD005\z004z3ez
bf27920a61 get_matrix Funktion erstellt 2025-11-11 16:09:42 +01:00

View File

@ -44,7 +44,7 @@ void setMatrixAt(MatrixType value, Matrix matrix, unsigned int rowIdx, unsigned
MatrixType getMatrixAt(const Matrix matrix, unsigned int rowIdx, unsigned int colIdx)
{
return matrix.data[(rowIdx * matrix.cols) + colIdx];
}
Matrix add(const Matrix matrix1, const Matrix matrix2)