diff options
author | Brijeshcr | 2017-08-18 16:34:37 +0530 |
---|---|---|
committer | Brijeshcr | 2017-08-18 16:34:37 +0530 |
commit | 8210eed0a941ab7e9664fe559c6c7c23f3669d97 (patch) | |
tree | 086dda46e1d1c0e5871daadf0aed214d8ee53218 /2.3-1/src/c/signalProcessing/hank/dhanka.c | |
parent | 857169357d49e44275e589c42653c1a00d4b0c82 (diff) | |
parent | 1ec65e20d266734a9471b5deaa31286793c9dc3b (diff) | |
download | Scilab2C-8210eed0a941ab7e9664fe559c6c7c23f3669d97.tar.gz Scilab2C-8210eed0a941ab7e9664fe559c6c7c23f3669d97.tar.bz2 Scilab2C-8210eed0a941ab7e9664fe559c6c7c23f3669d97.zip |
Added Log2 and Scaling
Diffstat (limited to '2.3-1/src/c/signalProcessing/hank/dhanka.c')
-rw-r--r-- | 2.3-1/src/c/signalProcessing/hank/dhanka.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/2.3-1/src/c/signalProcessing/hank/dhanka.c b/2.3-1/src/c/signalProcessing/hank/dhanka.c index 1857cc20..37008fd6 100644 --- a/2.3-1/src/c/signalProcessing/hank/dhanka.c +++ b/2.3-1/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 } |