diff options
author | Abhinav Dronamraju | 2017-08-01 20:25:57 +0530 |
---|---|---|
committer | Abhinav Dronamraju | 2017-08-01 20:25:57 +0530 |
commit | c73be8f2ad1c7c11f67ba31817f9d051bfa29fa1 (patch) | |
tree | a246d645f117df7d6abc9166023c7e114d4a3c46 /src/c/statisticsFunctions/moment/zmoments.c | |
parent | ac4326bd2f66e0978e200e4685f14669b8feda82 (diff) | |
parent | e47a705e2a330fc6745ad406d04d63075df65492 (diff) | |
download | Scilab2C_fossee_old-c73be8f2ad1c7c11f67ba31817f9d051bfa29fa1.tar.gz Scilab2C_fossee_old-c73be8f2ad1c7c11f67ba31817f9d051bfa29fa1.tar.bz2 Scilab2C_fossee_old-c73be8f2ad1c7c11f67ba31817f9d051bfa29fa1.zip |
Merged
Diffstat (limited to 'src/c/statisticsFunctions/moment/zmoments.c')
-rw-r--r-- | src/c/statisticsFunctions/moment/zmoments.c | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/src/c/statisticsFunctions/moment/zmoments.c b/src/c/statisticsFunctions/moment/zmoments.c new file mode 100644 index 0000000..1b84737 --- /dev/null +++ b/src/c/statisticsFunctions/moment/zmoments.c @@ -0,0 +1,22 @@ +#include <stdio.h> +#include <stdlib.h> +#include <math.h> +#include "moment.h" +#include "doubleComplex.h" +#include "floatComplex.h" +#include "pow.h" +#include "addition.h" +#include "division.h" + + +doubleComplex zmoments (doubleComplex* inp, int size, double ord) +{ + doubleComplex sum = DoubleComplex(0,0); + + for(int i = 0; i < size; i++) + { + sum = zadds(sum,zpows(inp[i], ord)); + } + + return zrdivs(sum,size); +} |