diff options
author | Brijeshcr | 2017-08-18 16:34:37 +0530 |
---|---|---|
committer | Brijeshcr | 2017-08-18 16:34:37 +0530 |
commit | 3aa26bd48e9d42e4f97fcafee4c761f36ea766bc (patch) | |
tree | e14e5e271ae83f02dbd834b290660303dc2a59bf /src/c/signalProcessing | |
parent | a210606cd1e59d66c621b0444d6c14927c71b381 (diff) | |
parent | 5b728d8239b1a1f4467e2485d54c7ed7db1d4f11 (diff) | |
download | scilab2c-3aa26bd48e9d42e4f97fcafee4c761f36ea766bc.tar.gz scilab2c-3aa26bd48e9d42e4f97fcafee4c761f36ea766bc.tar.bz2 scilab2c-3aa26bd48e9d42e4f97fcafee4c761f36ea766bc.zip |
Added Log2 and Scaling
Diffstat (limited to 'src/c/signalProcessing')
-rw-r--r-- | src/c/signalProcessing/hank/dhanka.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/c/signalProcessing/hank/dhanka.c b/src/c/signalProcessing/hank/dhanka.c index 1857cc20..37008fd6 100644 --- a/src/c/signalProcessing/hank/dhanka.c +++ b/src/c/signalProcessing/hank/dhanka.c @@ -20,6 +20,8 @@ void dhanka(int m, int n, double*seq_conv, int row, int col, double*out) { + +// Variable Declaration Start int mr, nr; mr= m* row; nr= n* row; @@ -31,8 +33,9 @@ void dhanka(int m, int n, double*seq_conv, int row, int col, double*out) double middle2[m*nr]; double index[m*nr]; double final[row*m*nr]; +// Variable Declaration End - +// Algorithm Start donesa(ones1, 1 , nr); donesa(ones2, m , 1); int j=0; @@ -106,5 +109,6 @@ printf("\n"); */ dmatrixa(final, row, m*nr, mr, (row*m*nr)/mr, out); +//Algorith Ends } |