diff options
author | siddhu8990 | 2016-05-10 17:17:41 +0530 |
---|---|---|
committer | siddhu8990 | 2016-05-10 17:17:41 +0530 |
commit | 7d13dc4707f5c4387acdb1946b955490629d2f98 (patch) | |
tree | a343e5ec78c9fa354444688f1b3bbd89ca55170f /2.3-1/src/c/matrixOperations/includes/triu.h | |
parent | d0dae962944e7fdb42bca7d0aa80055c44881b45 (diff) | |
download | Scilab2C-7d13dc4707f5c4387acdb1946b955490629d2f98.tar.gz Scilab2C-7d13dc4707f5c4387acdb1946b955490629d2f98.tar.bz2 Scilab2C-7d13dc4707f5c4387acdb1946b955490629d2f98.zip |
Added support for cumprod, cumsum, triu, tril functions
Diffstat (limited to '2.3-1/src/c/matrixOperations/includes/triu.h')
-rw-r--r-- | 2.3-1/src/c/matrixOperations/includes/triu.h | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/2.3-1/src/c/matrixOperations/includes/triu.h b/2.3-1/src/c/matrixOperations/includes/triu.h new file mode 100644 index 00000000..1dda2794 --- /dev/null +++ b/2.3-1/src/c/matrixOperations/includes/triu.h @@ -0,0 +1,33 @@ +// Copyright (C) 2016 - 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: Siddhesh Wani +// Organization: FOSSEE, IIT Bombay +// Email: toolbox@scilab.in + + +#ifndef __TRIU_H__ +#define __TRIU_H__ + +#include "types.h" + +#ifdef __cplusplus +#extern "C" { +#endif + +void dtriua (double *in, int row, int column, double diag, double *out); +void striua (float *in, int row, int column, double diag, float *out); +void u8triua (uint8 *in, int row, int column, double diag, uint8 *out); +void u16triua (uint16 *in, int row, int column, double diag, uint16 *out); +void i8triua (int8 *in, int row, int column, double diag, int8 *out); +void i16triua (int16 *in, int row, int column, double diag, int16 *out); + +#ifdef __cplusplus +#} /* extern "C" */ +#endif + +#endif /*__TRIU_H__*/ |