diff options
author | Brijeshcr | 2017-07-28 15:41:36 +0530 |
---|---|---|
committer | GitHub | 2017-07-28 15:41:36 +0530 |
commit | 6494599083ecf3035d060e1bec483350e647c265 (patch) | |
tree | bec805df23a29ae83af9515f2bc551caee0fbded /2.3-1/src/c/elementaryFunctions/includes/nanmax.h | |
parent | c9544c623c53e01c5e81709c92b25b6aa05bd7bd (diff) | |
parent | 81419aa6b4f55ae75192f704d2e52dbad3f34033 (diff) | |
download | Scilab2C-6494599083ecf3035d060e1bec483350e647c265.tar.gz Scilab2C-6494599083ecf3035d060e1bec483350e647c265.tar.bz2 Scilab2C-6494599083ecf3035d060e1bec483350e647c265.zip |
Merge pull request #25 from abhinavdronamraju/master
Added Nansum and merged
Diffstat (limited to '2.3-1/src/c/elementaryFunctions/includes/nanmax.h')
-rw-r--r-- | 2.3-1/src/c/elementaryFunctions/includes/nanmax.h | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/2.3-1/src/c/elementaryFunctions/includes/nanmax.h b/2.3-1/src/c/elementaryFunctions/includes/nanmax.h index bea83f78..83cfa0e9 100644 --- a/2.3-1/src/c/elementaryFunctions/includes/nanmax.h +++ b/2.3-1/src/c/elementaryFunctions/includes/nanmax.h @@ -24,12 +24,20 @@ extern "C" { #endif double dnanmaxa (double* , int); -void dnanmaxrowa (double*, int , int, double*); -void dnanmaxcola (double*, int , int, double*); +double dnanmax1a (double* , int, int , double*); +double dnanmax2a (double* , int, double*); +void dnanmaxrowa (double*, int , int, double*, double*); +void dnanmaxcola (double*, int , int, double*, double*); +void dnanmaxrow1a (double*, int , int, double*); +void dnanmaxcol1a (double*, int , int, double*); float snanmaxa (float* , int); -void snanmaxrowa (float*, int , int, float*); -void snanmaxcola (float*, int , int, float*); +float snanmax1a (float* , int, int , float*); +float snanmax2a (float* , int, float*); +void snanmaxrowa (float*, int , int, float*, float*); +void snanmaxcola (float*, int , int, float*, float*); +void snanmaxrow1a (float*, int , int, float*); +void snanmaxcol1a (float*, int , int, float*); |