diff options
author | Brijeshcr | 2017-07-21 17:27:46 +0530 |
---|---|---|
committer | Brijeshcr | 2017-07-21 17:27:46 +0530 |
commit | 07d9e48f562ecdfc20192c0af6cb06a413caf30e (patch) | |
tree | a57b1a927353f525a4a815ae52cd859f685d04ef /src/c/elementaryFunctions/includes/nanmax.h | |
parent | 1a31eaf396c7cbb94a6e82776d3f64c857182bbe (diff) | |
parent | 388b2e5e833667609f9ddca5f86f5859c8819399 (diff) | |
download | scilab2c-07d9e48f562ecdfc20192c0af6cb06a413caf30e.tar.gz scilab2c-07d9e48f562ecdfc20192c0af6cb06a413caf30e.tar.bz2 scilab2c-07d9e48f562ecdfc20192c0af6cb06a413caf30e.zip |
Median modified
Diffstat (limited to 'src/c/elementaryFunctions/includes/nanmax.h')
-rw-r--r-- | src/c/elementaryFunctions/includes/nanmax.h | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/src/c/elementaryFunctions/includes/nanmax.h b/src/c/elementaryFunctions/includes/nanmax.h new file mode 100644 index 00000000..bea83f78 --- /dev/null +++ b/src/c/elementaryFunctions/includes/nanmax.h @@ -0,0 +1,40 @@ +/* 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 __NANMAX_H__ +#define __NANMAX_H__ + + +#include "types.h" +#include "doubleComplex.h" +#include "floatComplex.h" +#include "int16.h" + +#ifdef __cplusplus +extern "C" { +#endif + +double dnanmaxa (double* , int); +void dnanmaxrowa (double*, int , int, double*); +void dnanmaxcola (double*, int , int, double*); + +float snanmaxa (float* , int); +void snanmaxrowa (float*, int , int, float*); +void snanmaxcola (float*, int , int, float*); + + + +#ifdef __cplusplus +} /* extern "C" */ +#endif + +#endif |