diff options
author | siddhu8990 | 2017-06-21 15:51:35 +0530 |
---|---|---|
committer | siddhu8990 | 2017-06-21 15:51:35 +0530 |
commit | 55f0ed8567f3dd7a248925591a161ee1beb46df0 (patch) | |
tree | a5ecd9dfe654e567ac49aea6a11b50984f8ab235 /2.3-1/src/c/linearAlgebra/includes/sva.h | |
parent | cae632f23980b28f814dc9441df40032c8a4c1aa (diff) | |
parent | fb56458ea04849e82f41d9c0f5c817a22839f848 (diff) | |
download | Scilab2C-55f0ed8567f3dd7a248925591a161ee1beb46df0.tar.gz Scilab2C-55f0ed8567f3dd7a248925591a161ee1beb46df0.tar.bz2 Scilab2C-55f0ed8567f3dd7a248925591a161ee1beb46df0.zip |
Merged new linear algebra functions
Diffstat (limited to '2.3-1/src/c/linearAlgebra/includes/sva.h')
-rw-r--r-- | 2.3-1/src/c/linearAlgebra/includes/sva.h | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/2.3-1/src/c/linearAlgebra/includes/sva.h b/2.3-1/src/c/linearAlgebra/includes/sva.h new file mode 100644 index 00000000..ea628a32 --- /dev/null +++ b/2.3-1/src/c/linearAlgebra/includes/sva.h @@ -0,0 +1,29 @@ + /* Copyright (C) 2017 - 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: Sandeep Gupta + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in + */ + +#ifndef __SVA_H__ +#define __SVA_H__ +#include "types.h" + +#ifdef __cplusplus +extern "C" { +#endif + +void dsvaa(int ninp,double *in1,int row,int col,double in2,double *out1, \ + double *out2,double *out3); + +#ifdef __cplusplus +} /* extern "C" */ +#endif + +#endif /*__SVA_H__*/ + |