From 4bd28238003609980b66edbd25dae9239a237843 Mon Sep 17 00:00:00 2001 From: Brijeshcr Date: Thu, 27 Jul 2017 18:29:25 +0530 Subject: Nanmin and Nanmean added --- src/c/elementaryFunctions/includes/nanmin.h | 37 +++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 src/c/elementaryFunctions/includes/nanmin.h (limited to 'src/c/elementaryFunctions/includes/nanmin.h') diff --git a/src/c/elementaryFunctions/includes/nanmin.h b/src/c/elementaryFunctions/includes/nanmin.h new file mode 100644 index 0000000..ba71bb0 --- /dev/null +++ b/src/c/elementaryFunctions/includes/nanmin.h @@ -0,0 +1,37 @@ +/* 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: Brijesh Gupta C R + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ + +#ifndef __NANMIN_H__ +#define __NANMIN_H__ + + +#include "types.h" +#include "doubleComplex.h" +#include "floatComplex.h" +#include "int16.h" + +#ifdef __cplusplus +extern "C" { +#endif + +double dnanmina(double* in, int row, int col, double* pos); +double dnanminnpa(double* in, int row, int col); +double dnanmins(double in, double* pos); +double dnanminnps(double in); + + + +#ifdef __cplusplus +} /* extern "C" */ +#endif + +#endif /*__NANMIN_H__*/ -- cgit From ac3b1715d28643d9c8ba79a409adaf4196509ea7 Mon Sep 17 00:00:00 2001 From: Brijeshcr Date: Thu, 27 Jul 2017 20:33:40 +0530 Subject: Updated Nanmin --- src/c/elementaryFunctions/includes/nanmin.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/c/elementaryFunctions/includes/nanmin.h') diff --git a/src/c/elementaryFunctions/includes/nanmin.h b/src/c/elementaryFunctions/includes/nanmin.h index ba71bb0..adeff6b 100644 --- a/src/c/elementaryFunctions/includes/nanmin.h +++ b/src/c/elementaryFunctions/includes/nanmin.h @@ -28,6 +28,10 @@ double dnanminnpa(double* in, int row, int col); double dnanmins(double in, double* pos); double dnanminnps(double in); +void dnanminrownpa(double *in, int row, int col, double* out); +void dnanmincolnpa(double *in, int row, int col, double* out); + + #ifdef __cplusplus -- cgit