diff options
Diffstat (limited to 'src/c/statisticsFunctions/meanf/zrowmeanfa.c')
-rw-r--r-- | src/c/statisticsFunctions/meanf/zrowmeanfa.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/c/statisticsFunctions/meanf/zrowmeanfa.c b/src/c/statisticsFunctions/meanf/zrowmeanfa.c index 1be43c99..79114137 100644 --- a/src/c/statisticsFunctions/meanf/zrowmeanfa.c +++ b/src/c/statisticsFunctions/meanf/zrowmeanfa.c @@ -26,7 +26,7 @@ void zrowmeanfa(doubleComplex *in1, int lines, int columns, doubleComplex *in2, for ( i = 0 ; i < lines; ++i ) { - tempMul = zmuls ( in1[lines*j + i] , in2[lines*j + i]); // we times by the coefficient + tempMul = zmuls ( in1[lines*j + i] , in2[lines*j + i]); /* we times by the coefficient*/ tempCoefSum = zadds ( in2[lines*j + i] ,tempCoefSum ) ; out[j] = zadds (tempMul, out[j]) ; } |