summaryrefslogtreecommitdiff
path: root/2.3-1/src/c/linearAlgebra/interfaces
diff options
context:
space:
mode:
authorBrijeshcr2017-07-06 15:48:47 +0530
committerGitHub2017-07-06 15:48:47 +0530
commitc600ebcb67961fe6007ba41fd5ad987da3af7f6e (patch)
tree26fc9679644561759e8a2c4080059d30b70a3105 /2.3-1/src/c/linearAlgebra/interfaces
parenta7eeecce4c7c39ea52a2d434815c574a2c42730d (diff)
downloadScilab2C-c600ebcb67961fe6007ba41fd5ad987da3af7f6e.tar.gz
Scilab2C-c600ebcb67961fe6007ba41fd5ad987da3af7f6e.tar.bz2
Scilab2C-c600ebcb67961fe6007ba41fd5ad987da3af7f6e.zip
Revert "LinearAlgebra Function Added"
Diffstat (limited to '2.3-1/src/c/linearAlgebra/interfaces')
-rw-r--r--2.3-1/src/c/linearAlgebra/interfaces/int_fullrf.h28
-rw-r--r--2.3-1/src/c/linearAlgebra/interfaces/int_givens.h32
-rw-r--r--2.3-1/src/c/linearAlgebra/interfaces/int_householder.h28
-rw-r--r--2.3-1/src/c/linearAlgebra/interfaces/int_qr.h34
-rw-r--r--2.3-1/src/c/linearAlgebra/interfaces/int_rowcomp.h29
-rw-r--r--2.3-1/src/c/linearAlgebra/interfaces/int_sqroot.h27
6 files changed, 0 insertions, 178 deletions
diff --git a/2.3-1/src/c/linearAlgebra/interfaces/int_fullrf.h b/2.3-1/src/c/linearAlgebra/interfaces/int_fullrf.h
deleted file mode 100644
index 1b8a067b..00000000
--- a/2.3-1/src/c/linearAlgebra/interfaces/int_fullrf.h
+++ /dev/null
@@ -1,28 +0,0 @@
- /* 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 __INT_FULLRF_H__
-#define __INT_FULLRF_H__
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-#define d2fullrfd2d2d0(in1,size,out1,out2) dfullrfa(1,in1,size[0],size[1],0,out1,out2);
-#define d2d0fullrfd2d2d0(in1,size,in2,out1,out2) dfullrfa(2,in1,size[0],size[1],in2,out1,out2);
-
-#ifdef __cplusplus
-} /* extern "C" */
-#endif
-
-#endif /*__INT_FULLRF_H__*/
-
diff --git a/2.3-1/src/c/linearAlgebra/interfaces/int_givens.h b/2.3-1/src/c/linearAlgebra/interfaces/int_givens.h
deleted file mode 100644
index ba30dbce..00000000
--- a/2.3-1/src/c/linearAlgebra/interfaces/int_givens.h
+++ /dev/null
@@ -1,32 +0,0 @@
- /* 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 __INT_GIVENS_H__
-#define __INT_GIVENS_H__
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-#define d2givensd2(in1,size,out1) dgivensa(1,in1,size[0],size[1],NULL,0,0,1,out1,NULL);
-#define d2givensd2d2(in1,size,out1,out2) dgivensa(1,in1,size[0],size[1],NULL,0,0,2,out1,out2);
-
-#define d0d0givensd2d2(in1,in2,out1,out2) dgivensa(2,&in1,1,1,&in2,1,1,2,out1,out2);
-#define d0d0givensd2(in1,out1) dgivensa(2,&in1,1,1,&in2,1,1,1,out1,NULL);
-
-
-#ifdef __cplusplus
-} /* extern "C" */
-#endif
-
-#endif /*__INT_GIVENS_H__*/
-
diff --git a/2.3-1/src/c/linearAlgebra/interfaces/int_householder.h b/2.3-1/src/c/linearAlgebra/interfaces/int_householder.h
deleted file mode 100644
index f8637197..00000000
--- a/2.3-1/src/c/linearAlgebra/interfaces/int_householder.h
+++ /dev/null
@@ -1,28 +0,0 @@
- /* 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 __INT_HOUSEHOLDER_H__
-#define __INT_HOUSEHOLDER_H__
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-#define d2householderd2(in1,size,out1) dhouseholdera(1,in1,size[0],NULL,out2);
-#define d2d2householderd2(in1,size1,in2,size2,out1) dhouseholdera(2,in1,size1[0],in2,out1);
-
-#ifdef __cplusplus
-} /* extern "C" */
-#endif
-
-#endif /*__INT_HOUSEHOLDER_H__*/
-
diff --git a/2.3-1/src/c/linearAlgebra/interfaces/int_qr.h b/2.3-1/src/c/linearAlgebra/interfaces/int_qr.h
deleted file mode 100644
index d34d8f41..00000000
--- a/2.3-1/src/c/linearAlgebra/interfaces/int_qr.h
+++ /dev/null
@@ -1,34 +0,0 @@
- /* 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 __INT_QR_H__
-#define __INT_QR_H__
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-#define d2qrd2d2(in1,size,out1,out2) dqra(1,2,in1,size[0],size[1],0,out1,out2,NULL);
-#define d2qrd2d2d2(in1,size,out1,out2,out3) dqra(1,3,in1,size[0],size[1],0,out1,out2,out3);
-#define d2g2qrd2d2(in1,size,in2,size1,out1,out2) dqra(2,2,in1,size[0],size[1],0,out1,out2,NULL);
-#define d2g2qrd2d2d2(in1,size,in2,size1,out1,out2,out3) dqra(2,3,in1,size[0],size[1],0,out1,out2,out3);
-#define d2d0qrd2d2d0d2(in1,size,in2,out1,out2,out3) dqra(2,4,in1,size[0],size[1],in2,out1,out2,out3);
-#define d2qrd2d2d0d2(in1,size,out1,out2,out3) dqra(1,4,in1,size[0],size[1],0,out1,out2,out3);
-
-
-
-#ifdef __cplusplus
-} /* extern "C" */
-#endif
-
-#endif /*__INT_HESS_H__*/
-
diff --git a/2.3-1/src/c/linearAlgebra/interfaces/int_rowcomp.h b/2.3-1/src/c/linearAlgebra/interfaces/int_rowcomp.h
deleted file mode 100644
index b72687d5..00000000
--- a/2.3-1/src/c/linearAlgebra/interfaces/int_rowcomp.h
+++ /dev/null
@@ -1,29 +0,0 @@
- /* 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 __INT_ROWCOMP_H__
-#define __INT_ROWCOMP_H__
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-#define d2rowcompd2d0(in1,size,out1) drowcompa(1,in1,size[0],size[1],NULL,0,out1);
-#define d2g2rowcompd2d0(in1,size,flag,size1,out1) drowcompa(2,in1,size[0],size[1],flag,0,out1);
-#define d2g2d0rowcompd2d0(in1,size,flag,size1,tol,out1) drowcompa(2,in1,size[0],size[1],flag,tol,out1);
-
-#ifdef __cplusplus
-} /* extern "C" */
-#endif
-
-#endif /*__INT_ROWCOMP_H__*/
-
diff --git a/2.3-1/src/c/linearAlgebra/interfaces/int_sqroot.h b/2.3-1/src/c/linearAlgebra/interfaces/int_sqroot.h
deleted file mode 100644
index 57af2c08..00000000
--- a/2.3-1/src/c/linearAlgebra/interfaces/int_sqroot.h
+++ /dev/null
@@ -1,27 +0,0 @@
- /* 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 __INT_SQROOT_H__
-#define __INT_SQROOT_H__
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-#define d2sqrootd2(inp,size,out) dsqroota(inp,size[0],size[1],out);
-
-#ifdef __cplusplus
-} /* extern "C" */
-#endif
-
-#endif /*__INT_HESS_H__*/
-