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/interfaces | |
parent | ac4326bd2f66e0978e200e4685f14669b8feda82 (diff) | |
parent | e47a705e2a330fc6745ad406d04d63075df65492 (diff) | |
download | scilab2c-c73be8f2ad1c7c11f67ba31817f9d051bfa29fa1.tar.gz scilab2c-c73be8f2ad1c7c11f67ba31817f9d051bfa29fa1.tar.bz2 scilab2c-c73be8f2ad1c7c11f67ba31817f9d051bfa29fa1.zip |
Merged
Diffstat (limited to 'src/c/statisticsFunctions/interfaces')
-rw-r--r-- | src/c/statisticsFunctions/interfaces/int_moment.h | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/src/c/statisticsFunctions/interfaces/int_moment.h b/src/c/statisticsFunctions/interfaces/int_moment.h new file mode 100644 index 00000000..5e9a0362 --- /dev/null +++ b/src/c/statisticsFunctions/interfaces/int_moment.h @@ -0,0 +1,33 @@ + /* 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 + Author: Brijesh Gupta C R + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in + */ +#ifndef __INT_MOMENT_H__ +#define __INT_MOMENT_H__ + +#ifdef __cplusplus +extern "C" { +#endif + +#define d2d0momentd0(in1,size,in2) dmoments(in1,size[0]*size[1], in2) +#define d2d0g2momentd2(in1, size, in2, in3, size2 ,out) (in3[0] == 'r') ? dmomentrowa(in1, size[0], size[1], in2, out) : dmomentcola(in1, size[0], size[1], in2, out) + +#define s2d0moments0(in1,size,in2) smoments(in1,size[0]*size[1], in2) +#define s2d0g2moments2(in1, size, in2, in3, size2 ,out) (in3[0] == 'r') ? smomentrowa(in1, size[0], size[1], in2, out) : smomentcola(in1, size[0], size[1], in2, out) + +#define z2d0momentz0(in1,size,in2) zmoments(in1,size[0]*size[1], in2) +#define z2d0g2momentz2(in1, size, in2, in3, size2 ,out) (in3[0] == 'r') ? zmomentrowa(in1, size[0], size[1], in2, out) : zmomentcola(in1, size[0], size[1], in2, out) + + +#ifdef __cplusplus +} /* extern "C" */ +#endif + +#endif /*__INT_MOMENT_H__*/ |