Compare commits

...

3 Commits

Author SHA1 Message Date
Jens Burger
78579ded18 Kleiner Fix 2 2025-11-18 10:27:39 +01:00
Jens Burger
5f52f6eef2 Kleine Fixes 2025-11-18 10:18:07 +01:00
f2b748a9c5 matrixtest korigiert 2025-11-17 20:47:06 +01:00
2 changed files with 23 additions and 15 deletions

View File

@ -1,5 +1,6 @@
#include <stdlib.h> #include <stdlib.h>
#include <string.h> #include <string.h>
#include <stdio.h>
#include "matrix.h" #include "matrix.h"
// TODO Matrix-Funktionen implementieren // TODO Matrix-Funktionen implementieren
@ -7,6 +8,13 @@
Matrix createMatrix(unsigned int rows, unsigned int cols) Matrix createMatrix(unsigned int rows, unsigned int cols)
{ {
Matrix matrix; Matrix matrix;
Matrix empty = {0, 0, NULL};
if(rows == 0 || cols == 0)
{
//print("Fehler: Dimensionen muessen >= 1 sein!");
return empty;
}
matrix.rows = rows; matrix.rows = rows;
matrix.cols = cols; matrix.cols = cols;
@ -14,7 +22,7 @@ Matrix createMatrix(unsigned int rows, unsigned int cols)
if(matrix.buffer == NULL) if(matrix.buffer == NULL)
{ {
printf("Fehler bei der Speicherreservierung! Keine Matrix erstellt!"); //printf("Fehler bei der Speicherreservierung! Keine Matrix erstellt!");
matrix.rows = 0; matrix.rows = 0;
matrix.cols = 0; matrix.cols = 0;
} }
@ -24,41 +32,41 @@ Matrix createMatrix(unsigned int rows, unsigned int cols)
void clearMatrix(Matrix *matrix) void clearMatrix(Matrix *matrix)
{ {
free(matrix.buffer); free(matrix->buffer);
matrix->buffer = NULL; matrix->buffer = NULL;
matrix->rows = 0; matrix->rows = 0;
matrix->cols = 0; matrix->cols = 0;
} }
void setMatrixAt(MatrixType value, Matrix *matrix, unsigned int rowIdx, unsigned int colIdx) void setMatrixAt(MatrixType value, Matrix matrix, unsigned int rowIdx, unsigned int colIdx)
{ {
if(matrix->buffer == NULL) if(matrix.buffer == NULL)
{ {
printf("Fehler beim Setzen! Matrix nicht initialisiert"); //printf("Fehler beim Setzen! Matrix nicht initialisiert");
return; return;
} }
if(rowIdx >= matrix->rows || colIdx >= matrix->cols) if(rowIdx >= matrix.rows || colIdx >= matrix.cols)
{ {
printf("Ungueltige Indizes beim Setzen!\n"); //printf("Ungueltige Indizes beim Setzen!\n");
return; return;
} }
matrix->buffer[rowIdx * matrix->cols + colIdx] = value; matrix.buffer[rowIdx * matrix.cols + colIdx] = value;
} }
MatrixType getMatrixAt(const Matrix matrix, unsigned int rowIdx, unsigned int colIdx) MatrixType getMatrixAt(const Matrix matrix, unsigned int rowIdx, unsigned int colIdx)
{ {
if(matrix.buffer == NULL) if(matrix.buffer == NULL)
{ {
printf("Fehler beim Lesen! Matrix nicht initialisiert"); //printf("Fehler beim Lesen! Matrix nicht initialisiert");
return 0; return 0;
} }
if(rowIdx >= matrix.rows || colIdx >= matrix.cols) if(rowIdx >= matrix.rows || colIdx >= matrix.cols)
{ {
printf("Ungueltige Indizes beim Lesen!\n"); //printf("Ungueltige Indizes beim Lesen!\n");
return 0; return 0;
} }
@ -69,7 +77,7 @@ Matrix add(const Matrix matrix1, const Matrix matrix2)
{ {
if((matrix1.rows != matrix2.rows) || (matrix1.cols != matrix2.cols)) if((matrix1.rows != matrix2.rows) || (matrix1.cols != matrix2.cols))
{ {
printf("Fehler bei Addition: Matrix Dimensionen passen nicht ueberein!\n"); //printf("Fehler bei Addition: Matrix Dimensionen passen nicht ueberein!\n");
Matrix empty = {0, 0, NULL}; Matrix empty = {0, 0, NULL};
return empty; return empty;
} }
@ -88,7 +96,7 @@ Matrix add(const Matrix matrix1, const Matrix matrix2)
matrix2Wert = getMatrixAt(matrix2, row, col); matrix2Wert = getMatrixAt(matrix2, row, col);
summe = matrix1Wert + matrix2Wert; summe = matrix1Wert + matrix2Wert;
setMatrixAt(summe, &ergebnisMatrix, row, col); setMatrixAt(summe, ergebnisMatrix, row, col);
} }
} }
@ -99,7 +107,7 @@ Matrix multiply(const Matrix matrix1, const Matrix matrix2)
{ {
if(matrix1.cols != matrix2.rows) if(matrix1.cols != matrix2.rows)
{ {
printf("Fehler bei Multiplikation: Matrix Dimensionen passen nicht ueberein!\n"); //printf("Fehler bei Multiplikation: Matrix Dimensionen passen nicht ueberein!\n");
Matrix empty = {0, 0, NULL}; Matrix empty = {0, 0, NULL};
return empty; return empty;
} }
@ -119,7 +127,7 @@ Matrix multiply(const Matrix matrix1, const Matrix matrix2)
erg += getMatrixAt(matrix1, row, k) * getMatrixAt(matrix2, k, col); erg += getMatrixAt(matrix1, row, k) * getMatrixAt(matrix2, k, col);
} }
setMatrixAt(erg, &ergebnisMatrix, row, col); setMatrixAt(erg, ergebnisMatrix, row, col);
} }
} }

View File

@ -164,7 +164,7 @@ void test_setMatrixAtFailsOnIndicesOutOfRange(void)
Matrix matrixToTest = {.rows=2, .cols=3, .buffer=buffer}; Matrix matrixToTest = {.rows=2, .cols=3, .buffer=buffer};
setMatrixAt(-1, matrixToTest, 2, 3); setMatrixAt(-1, matrixToTest, 2, 3);
TEST_ASSERT_EQUAL_FLOAT_ARRAY(expectedResults, matrixToTest.buffer, matrixToTest.cols * matrixToTest.rows); TEST_ASSERT_EQUAL_FLOAT_ARRAY(expectedResults, matrixToTest.buffer, sizeof(buffer)/sizeof(MatrixType));
} }
void setUp(void) { void setUp(void) {