diff options
author | Abhinav Dronamraju | 2017-07-17 21:57:08 +0530 |
---|---|---|
committer | Abhinav Dronamraju | 2017-07-17 21:57:08 +0530 |
commit | 574ddf08c208a2d1b8c27fe29525f631816c32d5 (patch) | |
tree | fa194ffe40c78219befd002aaa224206a314a551 /src/c/statisticsFunctions/includes | |
parent | 9a70aa3ff473b7bc72d849c2cc2ecece57d4c388 (diff) | |
download | Scilab2C_fossee_old-574ddf08c208a2d1b8c27fe29525f631816c32d5.tar.gz Scilab2C_fossee_old-574ddf08c208a2d1b8c27fe29525f631816c32d5.tar.bz2 Scilab2C_fossee_old-574ddf08c208a2d1b8c27fe29525f631816c32d5.zip |
Median added
Diffstat (limited to 'src/c/statisticsFunctions/includes')
-rw-r--r-- | src/c/statisticsFunctions/includes/median.h | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/src/c/statisticsFunctions/includes/median.h b/src/c/statisticsFunctions/includes/median.h new file mode 100644 index 0000000..accb5df --- /dev/null +++ b/src/c/statisticsFunctions/includes/median.h @@ -0,0 +1,46 @@ +/* Copyright (C) 2016 - 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: Abhinav Dronamraju + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ + + +#ifndef __MEDIAN_H__ +#define __MEDIAN_H__ + +#include "types.h" +#include "doubleComplex.h" +#include "uint16.h" + +#ifdef __cplusplus +extern "C" { +#endif + +double dmediana(double* , int ); +void dmedianrowa(double*, int, int, double*); +void dmediancola(double*, int, int, double*); + +float smediana(float* , int ); +void smedianrowa(float*, int, int, float*); +void smediancola(float*, int, int, float*); + +uint16 u16mediana(uint16* , int ); +void u16medianrowa(uint16*, int, int, uint16*); +void u16mediancola(uint16*, int, int, uint16*); + +doubleComplex zmediana(doubleComplex* , int ); +void zmedianrowa(doubleComplex*, int, int, doubleComplex*); +void zmediancola(doubleComplex*, int, int, doubleComplex*); + + +#ifdef __cplusplus +} /* extern "C" */ +#endif + +#endif /*__MATRIX_H__*/ |