diff options
author | Abhinav Dronamraju | 2017-07-06 15:45:03 +0530 |
---|---|---|
committer | Abhinav Dronamraju | 2017-07-06 15:45:03 +0530 |
commit | ea9cbcb56b821817625ec3ee76ae1daf3890337e (patch) | |
tree | bcd27141bff6199972c023cd17d8bd41ca0406d6 /src/c/elementaryFunctions/isrow/zisrowa.c | |
parent | fa2db2cb247abb6ac25342248a82226e97a0be92 (diff) | |
download | Scilab2C_fossee_old-ea9cbcb56b821817625ec3ee76ae1daf3890337e.tar.gz Scilab2C_fossee_old-ea9cbcb56b821817625ec3ee76ae1daf3890337e.tar.bz2 Scilab2C_fossee_old-ea9cbcb56b821817625ec3ee76ae1daf3890337e.zip |
Added isrow entirely
Diffstat (limited to 'src/c/elementaryFunctions/isrow/zisrowa.c')
-rw-r--r-- | src/c/elementaryFunctions/isrow/zisrowa.c | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/src/c/elementaryFunctions/isrow/zisrowa.c b/src/c/elementaryFunctions/isrow/zisrowa.c new file mode 100644 index 0000000..312ddf5 --- /dev/null +++ b/src/c/elementaryFunctions/isrow/zisrowa.c @@ -0,0 +1,28 @@ +/* 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: Abhinav Dronamraju + Organization: FOSSEE, IIT Bombay + Email: toolbox@scilab.in +*/ + +#include <stdio.h> +#include <stdlib.h> +#include <math.h> +#include "doubleComplex.h" +#include "isrow.h" +#include "types.h" + +char zisrowa(doubleComplex *inp, int size1) +{ + char out='F'; + if(size1==1) + { + out = 'T'; + } + return out; +} |