diff options
author | ukashanoor | 2017-07-04 11:55:14 +0530 |
---|---|---|
committer | ukashanoor | 2017-07-04 11:55:14 +0530 |
commit | 9c98503cadef71c7d916f30801c18661e9c3292f (patch) | |
tree | 3ab652b9a61e0991dcefa01f0d63145516101361 /src/c/linearAlgebra/includes/sva.h | |
parent | 9fc55b8370323fd8f7364a5abfcee3af65899a97 (diff) | |
download | scilab2c-9c98503cadef71c7d916f30801c18661e9c3292f.tar.gz scilab2c-9c98503cadef71c7d916f30801c18661e9c3292f.tar.bz2 scilab2c-9c98503cadef71c7d916f30801c18661e9c3292f.zip |
after debugging 1
Diffstat (limited to 'src/c/linearAlgebra/includes/sva.h')
-rw-r--r-- | src/c/linearAlgebra/includes/sva.h | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/src/c/linearAlgebra/includes/sva.h b/src/c/linearAlgebra/includes/sva.h new file mode 100644 index 00000000..ea628a32 --- /dev/null +++ b/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__*/ + |