summaryrefslogtreecommitdiff
path: root/lib/Numeric/LinearAlgebra/LAPACK/lapack-aux.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Numeric/LinearAlgebra/LAPACK/lapack-aux.h')
-rw-r--r--lib/Numeric/LinearAlgebra/LAPACK/lapack-aux.h71
1 files changed, 0 insertions, 71 deletions
diff --git a/lib/Numeric/LinearAlgebra/LAPACK/lapack-aux.h b/lib/Numeric/LinearAlgebra/LAPACK/lapack-aux.h
index 9526583..a3f1899 100644
--- a/lib/Numeric/LinearAlgebra/LAPACK/lapack-aux.h
+++ b/lib/Numeric/LinearAlgebra/LAPACK/lapack-aux.h
@@ -36,10 +36,6 @@ typedef short ftnlen;
36 36
37/********************************************************/ 37/********************************************************/
38 38
39#include "clapack.h"
40
41/********************************************************/
42
43#define FVEC(A) int A##n, float*A##p 39#define FVEC(A) int A##n, float*A##p
44#define DVEC(A) int A##n, double*A##p 40#define DVEC(A) int A##n, double*A##p
45#define QVEC(A) int A##n, complex*A##p 41#define QVEC(A) int A##n, complex*A##p
@@ -62,70 +58,3 @@ typedef short ftnlen;
62#define KCMAT(A) int A##r, int A##c, const doublecomplex* A##p 58#define KCMAT(A) int A##r, int A##c, const doublecomplex* A##p
63#define KPMAT(A) int A##r, int A##c, const void* A##p, int A##s 59#define KPMAT(A) int A##r, int A##c, const void* A##p, int A##s
64 60
65/********************************************************/
66
67int multiplyF(int ta, int tb, KFMAT(a),KFMAT(b),FMAT(r));
68int multiplyR(int ta, int tb, KDMAT(a),KDMAT(b),DMAT(r));
69int multiplyC(int ta, int tb, KCMAT(a),KCMAT(b),CMAT(r));
70int multiplyQ(int ta, int tb, KQMAT(a),KQMAT(b),QMAT(r));
71
72int transF(KFMAT(x),FMAT(t));
73int transR(KDMAT(x),DMAT(t));
74int transQ(KQMAT(x),QMAT(t));
75int transC(KCMAT(x),CMAT(t));
76int transP(KPMAT(x),PMAT(t));
77
78int constantF(float * pval, FVEC(r));
79int constantR(double * pval, DVEC(r));
80int constantQ(complex* pval, QVEC(r));
81int constantC(doublecomplex* pval, CVEC(r));
82int constantP(void* pval, PVEC(r));
83
84int float2double(FVEC(x),DVEC(y));
85int double2float(DVEC(x),FVEC(y));
86
87int conjugateQ(KQVEC(x),QVEC(t));
88int conjugateC(KCVEC(x),CVEC(t));
89
90int stepF(FVEC(x),FVEC(y));
91int stepD(DVEC(x),DVEC(y));
92
93int condF(FVEC(x),FVEC(y),FVEC(lt),FVEC(eq),FVEC(gt),FVEC(r));
94int condD(DVEC(x),DVEC(y),DVEC(lt),DVEC(eq),DVEC(gt),DVEC(r));
95
96int svd_l_R(KDMAT(x),DMAT(u),DVEC(s),DMAT(v));
97int svd_l_Rdd(KDMAT(x),DMAT(u),DVEC(s),DMAT(v));
98int svd_l_C(KCMAT(a),CMAT(u),DVEC(s),CMAT(v));
99
100int eig_l_C(KCMAT(a),CMAT(u),CVEC(s),CMAT(v));
101int eig_l_R(KDMAT(a),DMAT(u),CVEC(s),DMAT(v));
102
103int eig_l_S(int,KDMAT(a),DVEC(s),DMAT(v));
104int eig_l_H(int,KCMAT(a),DVEC(s),CMAT(v));
105
106int linearSolveR_l(KDMAT(a),KDMAT(b),DMAT(x));
107int linearSolveC_l(KCMAT(a),KCMAT(b),CMAT(x));
108
109int linearSolveLSR_l(KDMAT(a),KDMAT(b),DMAT(x));
110int linearSolveLSC_l(KCMAT(a),KCMAT(b),CMAT(x));
111
112int linearSolveSVDR_l(double,KDMAT(a),KDMAT(b),DMAT(x));
113int linearSolveSVDC_l(double,KCMAT(a),KCMAT(b),CMAT(x));
114
115int chol_l_H(KCMAT(a),CMAT(r));
116int chol_l_S(KDMAT(a),DMAT(r));
117
118int qr_l_R(KDMAT(a), DVEC(tau), DMAT(r));
119int qr_l_C(KCMAT(a), CVEC(tau), CMAT(r));
120
121int hess_l_R(KDMAT(a), DVEC(tau), DMAT(r));
122int hess_l_C(KCMAT(a), CVEC(tau), CMAT(r));
123
124int schur_l_R(KDMAT(a), DMAT(u), DMAT(s));
125int schur_l_C(KCMAT(a), CMAT(u), CMAT(s));
126
127int lu_l_R(KDMAT(a), DVEC(ipiv), DMAT(r));
128int lu_l_C(KCMAT(a), DVEC(ipiv), CMAT(r));
129
130int luS_l_R(KDMAT(a), KDVEC(ipiv), KDMAT(b), DMAT(x));
131int luS_l_C(KCMAT(a), KDVEC(ipiv), KCMAT(b), CMAT(x));