sum implementation
This commit is contained in:
parent
3fc16dbe8e
commit
a36a7c115c
@ -71,8 +71,11 @@ const math::matrix<float> Convolution::join(math::matrix<float> A, math::matrix<
|
|||||||
const float Convolution::sum(const math::matrix<float> A)
|
const float Convolution::sum(const math::matrix<float> A)
|
||||||
{
|
{
|
||||||
float sum = 0.0;
|
float sum = 0.0;
|
||||||
|
int size = A.rowno();
|
||||||
|
|
||||||
qDebug() << Q_FUNC_INFO << "Not implemented yet!";
|
for (int i = 0; i< size; i++)
|
||||||
|
for (int j = 0; j< size; j++)
|
||||||
|
sum = sum + A[i][j];
|
||||||
|
|
||||||
return sum;
|
return sum;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user