vide
This commit is contained in:
parent
e23d744cdc
commit
479289a365
BIN
Code-C/main
BIN
Code-C/main
Binary file not shown.
|
@ -18,12 +18,11 @@ void powerCalculation(long **p, double powerArray[]){
|
|||
powerArray[i] = 0;
|
||||
|
||||
while(j < nRow){
|
||||
|
||||
printf("%d , %d , %d , %d\n" , p[j][i], p[j+1][i] , i ,j);
|
||||
printf("%d , %d , %d , %d\n" , p[j][i] ,powerArray[i] , i ,j);
|
||||
powerArray[i] + pow(p[j][i],2);
|
||||
j++;
|
||||
}
|
||||
powerArray[i] *= invTimeBandWidth;
|
||||
powerArray[i] /= nRow;
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue