Compare commits
2 Commits
eda98eb343
...
5fcf897795
| Author | SHA1 | Date | |
|---|---|---|---|
| 5fcf897795 | |||
| f34b966f9a |
@ -114,6 +114,7 @@ Matrix add(const Matrix matrix1, const Matrix matrix2)
|
||||
return createMatrix(0, 0);
|
||||
}
|
||||
|
||||
|
||||
for(unsigned int i = 0; i < resRows; ++i)
|
||||
{
|
||||
for(unsigned int j = 0; j < resCols; ++j)
|
||||
@ -124,6 +125,7 @@ Matrix add(const Matrix matrix1, const Matrix matrix2)
|
||||
unsigned int i2 = (matrix2.rows == 1) ? 0 : i;
|
||||
unsigned int j2 = (matrix2.cols == 1) ? 0 : j;
|
||||
|
||||
|
||||
MatrixType val = getMatrixAt(matrix1, i1, j1) + getMatrixAt(matrix2, i2, j2);
|
||||
setMatrixAt(val, &result, i, j);
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user