diff options
author | Abhinav Dronamraju | 2017-07-14 16:30:11 +0530 |
---|---|---|
committer | Abhinav Dronamraju | 2017-07-14 16:30:11 +0530 |
commit | 3af005920a6bce61c99d26fa205794634f5ad405 (patch) | |
tree | 3cd9fdf42e364f34cf1ad20e5401664619083a5e /2.3-1/src/c/elementaryFunctions/interfaces | |
parent | 8595e91e1c157f471cc359a7dd927b1e18561b2d (diff) | |
download | Scilab2C-3af005920a6bce61c99d26fa205794634f5ad405.tar.gz Scilab2C-3af005920a6bce61c99d26fa205794634f5ad405.tar.bz2 Scilab2C-3af005920a6bce61c99d26fa205794634f5ad405.zip |
Isvector and NNZ added
Diffstat (limited to '2.3-1/src/c/elementaryFunctions/interfaces')
-rw-r--r-- | 2.3-1/src/c/elementaryFunctions/interfaces/int_isvector.h | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/2.3-1/src/c/elementaryFunctions/interfaces/int_isvector.h b/2.3-1/src/c/elementaryFunctions/interfaces/int_isvector.h new file mode 100644 index 00000000..6d943bd3 --- /dev/null +++ b/2.3-1/src/c/elementaryFunctions/interfaces/int_isvector.h @@ -0,0 +1,26 @@ + /*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 __INT_ISVECTOR_H__ +#define __INT_ISVECTOR_H__ + +#define d2isvectorg0(in, size ) disvectora(in, size[0]) +#define d0isvectorg0(in) disvectors(in) +#define s2isvectorg0(in , size) sisvectora(in, size[0]) +#define s0isvectorg0(in) sisvectors(in) +#define g2isvectorg0(in, size) gisvectora(in, size[0]) +#define g0isvectorg0(in) gisvectors(in) +#define z2isvectorg0(in, size) zisvectora(in , size[0]) +#define z0isvectorg0(in) zisvectors(in) + + +#endif |