diff options
author | Brijeshcr | 2017-08-18 16:29:50 +0530 |
---|---|---|
committer | Brijeshcr | 2017-08-18 16:29:50 +0530 |
commit | a210606cd1e59d66c621b0444d6c14927c71b381 (patch) | |
tree | 31174b8d67faef5fab07d3d0e0e852ee0423ba5e /src/c/elementaryFunctions/log2/zlog2a.c | |
parent | 4bc007e5b44a13b582b0275bf7fc6693942ba2ac (diff) | |
download | Scilab2C_fossee_old-a210606cd1e59d66c621b0444d6c14927c71b381.tar.gz Scilab2C_fossee_old-a210606cd1e59d66c621b0444d6c14927c71b381.tar.bz2 Scilab2C_fossee_old-a210606cd1e59d66c621b0444d6c14927c71b381.zip |
Scaling and Log2 added
Diffstat (limited to 'src/c/elementaryFunctions/log2/zlog2a.c')
-rw-r--r-- | src/c/elementaryFunctions/log2/zlog2a.c | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/c/elementaryFunctions/log2/zlog2a.c b/src/c/elementaryFunctions/log2/zlog2a.c new file mode 100644 index 0000000..4cd0b33 --- /dev/null +++ b/src/c/elementaryFunctions/log2/zlog2a.c @@ -0,0 +1,20 @@ +/* Copyright (C) 2017 - IIT Bombay - FOSSEE + + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Organization: FOSSEE, IIT Bombay + Author: Brijesh Gupta C R + Email: toolbox@scilab.in +*/ +#include <stdio.h> +#include <math.h> +#include "log2.h" + +void zlog2a(doubleComplex* inp,int size, doubleComplex* out) +{ + for(int i = 0; i<size; i++) + out[i] = zlog2s(inp[i]); +} |