diff options
author | torset | 2009-01-30 13:55:23 +0000 |
---|---|---|
committer | torset | 2009-01-30 13:55:23 +0000 |
commit | 6b2a70b2d4be4da6c1d5d9e28e808f2fc40995f5 (patch) | |
tree | 6f4d88f42099e3f3548b0b088698dbe514556d92 /src/Scilab2C | |
parent | 486fc1c903accb005f262fbfd7a929a53c9c6853 (diff) | |
download | scilab2c-6b2a70b2d4be4da6c1d5d9e28e808f2fc40995f5.tar.gz scilab2c-6b2a70b2d4be4da6c1d5d9e28e808f2fc40995f5.tar.bz2 scilab2c-6b2a70b2d4be4da6c1d5d9e28e808f2fc40995f5.zip |
Remove sqrt unlinked header
Diffstat (limited to 'src/Scilab2C')
-rw-r--r-- | src/Scilab2C/Scilab2C/CFiles/sci2cincludes/sci2clib.h | 8 | ||||
-rw-r--r-- | src/Scilab2C/Scilab2C/CFiles/sci2cincludes/sqrt.h | 79 |
2 files changed, 3 insertions, 84 deletions
diff --git a/src/Scilab2C/Scilab2C/CFiles/sci2cincludes/sci2clib.h b/src/Scilab2C/Scilab2C/CFiles/sci2cincludes/sci2clib.h index c5a00ead..08d14e33 100644 --- a/src/Scilab2C/Scilab2C/CFiles/sci2cincludes/sci2clib.h +++ b/src/Scilab2C/Scilab2C/CFiles/sci2cincludes/sci2clib.h @@ -12,7 +12,6 @@ #include "floatComplex.h"
#include "RealToComplex.h"
#include "conj.h"
-#include "cos.h"
#include "ones.h"
#include "zeros.h"
#include "OpApex.h"
@@ -25,7 +24,6 @@ #include "OpStar.h"
#include "OpIns.h"
#include "OpExt.h"
-#include "sin.h"
#include "FileManagement.h"
#include "OpLogGt.h"
#include "OpLogLt.h"
@@ -39,9 +37,6 @@ #include "int_sqrt.h"
#include "abs.h"
#include "int_abs.h"
-#include "log1p.h"
-#include "log.h"
-#include "int_log.h"
#include "log10.h"
#include "int_log10.h"
#include "pythag.h" @@ -89,6 +84,9 @@ /* interfacing log */ #include "log.h" #include "int_log.h" +/* interfacing log1p */ +#include "log1p.h" +#include "int_log1p.h" /* interfacing exp */ #include "exp.h" #include "int_exp.h" diff --git a/src/Scilab2C/Scilab2C/CFiles/sci2cincludes/sqrt.h b/src/Scilab2C/Scilab2C/CFiles/sci2cincludes/sqrt.h deleted file mode 100644 index 01175948..00000000 --- a/src/Scilab2C/Scilab2C/CFiles/sci2cincludes/sqrt.h +++ /dev/null @@ -1,79 +0,0 @@ -/* -** -*- C -*- -** -** sqrt.h -** Made by Bruno JOFRET <bruno.jofret@inria.fr> -** -** Started on Thu Mar 22 08:54:39 2007 jofret -** Last update Mon Oct 22 10:02:53 2007 bruno -** -** Copyright INRIA 2007 -*/ - -#ifndef __SQRT_H__ -#define __SQRT_H__ - -#include "floatComplex.h" -#include "doubleComplex.h" - -/* -** Compute Square Root for different types . -*/ - -/* -** \brief Float Square Root function -** \param in : input value. -*/ -float ssqrts(float in); - -/* -** \brief Double Square Root function -** \param in : input value. -*/ -double dsqrts(double in); - -/* -** \brief Float Complex Square Root function -** \param in : input value. -*/ -floatComplex csqrts(floatComplex in); - -/* -** \brief Double Complex Square Root function -** \param in : input value. -*/ -doubleComplex zsqrts(doubleComplex in); - -/* -** \brief Float Matrix Square Root function -** \param in : input array value. -** \param out : output array value. -** \param size : the size of in and out arrays. -*/ -void ssqrta(float* in, int size, float* out); - -/* -** \brief Double Matrix Square Root function -** \param in : input array value. -** \param out : output array value. -** \param size : the size of in and out arrays. -*/ -void dsqrta(double* in, int size, double* out); - -/* -** \brief Float Complex Matrix Square Root function -** \param in : input array value. -** \param out : output array value. -** \param size : the size of in and out arrays. -*/ -void csqrta(floatComplex* in, int size, floatComplex* out); - -/* -** \brief Double Complex Matrix Square Root function -** \param in : input array value. -** \param out : output array value. -** \param size : the size of in and out arrays. -*/ -void zsqrta(doubleComplex* in, int size, doubleComplex* out); - -#endif /* !__SQRT_H__ */ |