diff options
author | Abhinav Dronamraju | 2017-07-06 21:21:25 +0530 |
---|---|---|
committer | Abhinav Dronamraju | 2017-07-06 21:21:25 +0530 |
commit | 8b6ddcc2401fa46ec321045f2a0bcc32068880ff (patch) | |
tree | 4b1ad9e59f69db3f34f79444357c6b199b71de8c /src/c/elementaryFunctions/ismatrix | |
parent | 0c0cf39bcb8e6f0f6e58aabc276f3938f778a00e (diff) | |
download | scilab2c-8b6ddcc2401fa46ec321045f2a0bcc32068880ff.tar.gz scilab2c-8b6ddcc2401fa46ec321045f2a0bcc32068880ff.tar.bz2 scilab2c-8b6ddcc2401fa46ec321045f2a0bcc32068880ff.zip |
Added Iscolumn
Diffstat (limited to 'src/c/elementaryFunctions/ismatrix')
-rw-r--r-- | src/c/elementaryFunctions/ismatrix/dismatrixa.c | 22 | ||||
-rw-r--r-- | src/c/elementaryFunctions/ismatrix/dismatrixs.c | 22 |
2 files changed, 44 insertions, 0 deletions
diff --git a/src/c/elementaryFunctions/ismatrix/dismatrixa.c b/src/c/elementaryFunctions/ismatrix/dismatrixa.c new file mode 100644 index 00000000..4fe7d192 --- /dev/null +++ b/src/c/elementaryFunctions/ismatrix/dismatrixa.c @@ -0,0 +1,22 @@ +/* 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 "ismatrix.h" +#include "types.h" +char dismatrixa(double* in) +{ + char out= 'T' ; + return out; +} diff --git a/src/c/elementaryFunctions/ismatrix/dismatrixs.c b/src/c/elementaryFunctions/ismatrix/dismatrixs.c new file mode 100644 index 00000000..f1c99dc4 --- /dev/null +++ b/src/c/elementaryFunctions/ismatrix/dismatrixs.c @@ -0,0 +1,22 @@ +/* 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 "ismatrix.h" +#include "types.h" +char dismatrixs(double in) +{ + char out= 'F' ; + return out; +} |