diff options
author | siddhu8990 | 2017-06-21 15:46:02 +0530 |
---|---|---|
committer | siddhu8990 | 2017-06-21 15:46:02 +0530 |
commit | 7dd99346700740df9480b1f47221e24afc32371d (patch) | |
tree | 41b5094514f9a62d40483a1b6c0481c115220c04 /includes/sci2clib.h | |
parent | adbc46709966e50b3fed6ff061afff9e59d4b79c (diff) | |
parent | 061f07929cc984788154bc296c6cc440ef72a3c6 (diff) | |
download | Scilab2C_fossee_old-7dd99346700740df9480b1f47221e24afc32371d.tar.gz Scilab2C_fossee_old-7dd99346700740df9480b1f47221e24afc32371d.tar.bz2 Scilab2C_fossee_old-7dd99346700740df9480b1f47221e24afc32371d.zip |
Merged Ankit's work, signal processing and string functions
Diffstat (limited to 'includes/sci2clib.h')
-rw-r--r-- | includes/sci2clib.h | 79 |
1 files changed, 79 insertions, 0 deletions
diff --git a/includes/sci2clib.h b/includes/sci2clib.h index f662325..18c5730 100644 --- a/includes/sci2clib.h +++ b/includes/sci2clib.h @@ -318,6 +318,15 @@ extern "C" { #include "factor.h" #include "int_factor.h" +/*interfacing gcd*/ +#include "gcd.h" +#include "int_gcd.h" + +/*interfacing lcm*/ +#include "lcm.h" +#include "int_lcm.h" + + /* IMPLICIT LISTS */ /* interfacing implicitList/OpColon */ #include "implicitList.h" @@ -457,7 +466,57 @@ extern "C" { #include "lev.h" #include "int_lev.h" +/* interfacing zpbutt */ +#include "zpbutt.h" +#include "int_zpbutt.h" + +/*interfacing zpch1 */ +#include "zpch1.h" +#include "int_zpch1.h" + +/*interfacing zpch2 */ +#include "zpch2.h" +#include "int_zpch2.h" + +/*interfacing buttmag */ +#include "buttmag.h" +#include "int_buttmag.h" + +/*interfacing cheb1mag */ +#include "cheb1mag.h" +#include "int_cheb1mag.h" + +/*interfacing cheb2mag */ +#include "cheb2mag.h" +#include "int_cheb2mag.h" + +/*interfacing sinc */ +#include "sinc.h" +#include "int_sinc.h" +/*interfacing sincd */ +#include "sincd.h" +#include "int_sincd.h" + +/*interfacing fsfirlin */ +#include "fsfirlin.h" +#include "int_fsfirlin.h" + +/*interfacing %k */ +#include "modk.h" +#include "int_modk.h" + +/*interfacing filt_sinc */ +#include "filt_sinc.h" +#include "int_filt_sinc.h" + +/*interfacing ffilt */ +#include "ffilt.h" +#include "int_ffilt.h" + +/*interfacing modsn */ +#include "modsn.h" +#include "int_modsn.h" /* STATISTICS FUNCTIONS */ @@ -526,6 +585,26 @@ extern "C" { #include "strrchr.h" #include "int_strrchr.h" +/*interfacing strchr*/ +#include "strchr.h" +#include "int_strchr.h" + +/*interfacing ascii*/ +#include "ascii.h" +#include "int_ascii.h" + +/*interfacing strspn*/ +#include "strspn.h" +#include "int_strspn.h" + +/*interfacing strcspn*/ +#include "strcspn.h" +#include "int_strcspn.h" + +/*interfacing strncpy*/ +#include "strncpy.h" +#include "int_strncpy.h" + /*Functions related to strings*/ #include "convstr.h" #include "int_convstr.h" |