error fix matrix.c
This commit is contained in:
parent
89e99abf8e
commit
b30c2a3808
18
matrix.c
18
matrix.c
@ -7,7 +7,7 @@
|
|||||||
Matrix createMatrix(unsigned int rows, unsigned int cols)
|
Matrix createMatrix(unsigned int rows, unsigned int cols)
|
||||||
{
|
{
|
||||||
|
|
||||||
Matrix m = {NULL, rows, cols} //Wahrscheinlich in Programm bereits enthalten;
|
Matrix m = {NULL, rows, cols}; // Wahrscheinlich in Programm bereits enthalten;
|
||||||
|
|
||||||
if (rows > 0 && cols > 0)
|
if (rows > 0 && cols > 0)
|
||||||
{
|
{
|
||||||
@ -22,7 +22,6 @@ Matrix createMatrix(unsigned int rows, unsigned int cols)
|
|||||||
return m;
|
return m;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void clearMatrix(Matrix *matrix)
|
void clearMatrix(Matrix *matrix)
|
||||||
{
|
{
|
||||||
|
|
||||||
@ -36,14 +35,12 @@ void clearMatrix(Matrix *matrix)
|
|||||||
}
|
}
|
||||||
|
|
||||||
void setMatrixAt(MatrixType value, Matrix matrix, unsigned int rowIdx, unsigned int colIdx)
|
void setMatrixAt(MatrixType value, Matrix matrix, unsigned int rowIdx, unsigned int colIdx)
|
||||||
//not testet
|
// Matrix matrix zu Matrix *matrix, empfehlung
|
||||||
{
|
{
|
||||||
if (rowIdx < matrix.rows && colIdx < matrix.cols && matrix.buffer != NULL)
|
if (rowIdx < matrix.rows && colIdx < matrix.cols && matrix.buffer != NULL)
|
||||||
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 (rowIdx >= matrix.rows || colIdx >= matrix.cols || matrix.buffer == NULL)
|
if (rowIdx >= matrix.rows || colIdx >= matrix.cols || matrix.buffer == NULL)
|
||||||
@ -72,7 +69,7 @@ Matrix add(const Matrix matrix1, const Matrix matrix2)
|
|||||||
// matrix_add[r][c] = matrix1[r][c] + matrix2[r][c]
|
// matrix_add[r][c] = matrix1[r][c] + matrix2[r][c]
|
||||||
|
|
||||||
MatrixType sum = getMatrixAt(matrix1, r, c) + getMatrixAt(matrix2, r, c);
|
MatrixType sum = getMatrixAt(matrix1, r, c) + getMatrixAt(matrix2, r, c);
|
||||||
setMatrixAt(sum,result_add,r,c) //evtl re
|
setMatrixAt(sum, result_add, r, c); // evtl re
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -80,18 +77,18 @@ Matrix add(const Matrix matrix1, const Matrix matrix2)
|
|||||||
Matrix multiply(const Matrix matrix1, const Matrix matrix2)
|
Matrix multiply(const Matrix matrix1, const Matrix matrix2)
|
||||||
{
|
{
|
||||||
// Needed: rows/Zeilen, collums/Spalten
|
// Needed: rows/Zeilen, collums/Spalten
|
||||||
MatrixType buffer_add = 0; //TODO: Datentyp achten, ist int richitg?
|
MatrixType buffer_add;
|
||||||
Matrix result = {NULL, 0, 0}; //Leere Matrix, falls fehler
|
|
||||||
// Probe ob Spalten1 = Zeilen2
|
// Probe ob Spalten1 = Zeilen2
|
||||||
if (matrix1.cols != matrix2.rows)
|
if (matrix1.cols != matrix2.rows)
|
||||||
return -1;
|
return createMatrix(0, 0);
|
||||||
|
|
||||||
result = createMatrix(matrix1.rows, matrix2.cols); // ""
|
Matrix result = createMatrix(matrix1.rows, matrix2.cols); // ""
|
||||||
|
|
||||||
for (int index = 0; index < matrix1.rows; index++)
|
for (int index = 0; index < matrix1.rows; index++)
|
||||||
{
|
{
|
||||||
for (int shift = 0; shift < matrix2.cols; shift++)
|
for (int shift = 0; shift < matrix2.cols; shift++)
|
||||||
{
|
{
|
||||||
|
buffer_add = 0;
|
||||||
for (int skalar = 0; skalar < matrix1.cols; skalar++)
|
for (int skalar = 0; skalar < matrix1.cols; skalar++)
|
||||||
// TODO: matrix_add initialisieren
|
// TODO: matrix_add initialisieren
|
||||||
{
|
{
|
||||||
@ -101,6 +98,5 @@ Matrix multiply(const Matrix matrix1, const Matrix matrix2)
|
|||||||
// matrix_mul[index][shift] = buffer_add;
|
// matrix_mul[index][shift] = buffer_add;
|
||||||
setMatrixAt(buffer_add, result, index, shift); // result als Pointer, also mit &result
|
setMatrixAt(buffer_add, result, index, shift); // result als Pointer, also mit &result
|
||||||
}
|
}
|
||||||
buffer_add = 0;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Loading…
x
Reference in New Issue
Block a user