457
|
1 /* |
|
2 |
1882
|
3 Copyright (C) 1996 John W. Eaton |
457
|
4 |
|
5 This file is part of Octave. |
|
6 |
|
7 Octave is free software; you can redistribute it and/or modify it |
|
8 under the terms of the GNU General Public License as published by the |
|
9 Free Software Foundation; either version 2, or (at your option) any |
|
10 later version. |
|
11 |
|
12 Octave is distributed in the hope that it will be useful, but WITHOUT |
|
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
15 for more details. |
|
16 |
|
17 You should have received a copy of the GNU General Public License |
|
18 along with Octave; see the file COPYING. If not, write to the Free |
1315
|
19 Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
457
|
20 |
|
21 */ |
|
22 |
1296
|
23 #if defined (__GNUG__) |
|
24 #pragma implementation |
|
25 #endif |
|
26 |
457
|
27 #ifdef HAVE_CONFIG_H |
1192
|
28 #include <config.h> |
457
|
29 #endif |
|
30 |
1631
|
31 #include <iostream.h> |
|
32 |
457
|
33 #include "dbleSVD.h" |
1847
|
34 #include "f77-fcn.h" |
457
|
35 #include "mx-inlines.cc" |
|
36 |
|
37 extern "C" |
|
38 { |
1253
|
39 int F77_FCN (dgesvd, DGESVD) (const char*, const char*, const int&, |
|
40 const int&, double*, const int&, |
|
41 double*, double*, const int&, double*, |
|
42 const int&, double*, const int&, int&, |
|
43 long, long); |
457
|
44 } |
|
45 |
1543
|
46 Matrix |
1545
|
47 SVD::left_singular_matrix (void) const |
1543
|
48 { |
1544
|
49 if (type_computed == SVD::sigma_only) |
1543
|
50 { |
|
51 (*current_liboctave_error_handler) |
|
52 ("ComplexSVD: U not computed because type == SVD::sigma_only"); |
|
53 return Matrix (); |
|
54 } |
|
55 else |
|
56 return left_sm; |
|
57 } |
|
58 |
|
59 Matrix |
1545
|
60 SVD::right_singular_matrix (void) const |
1543
|
61 { |
1544
|
62 if (type_computed == SVD::sigma_only) |
1543
|
63 { |
|
64 (*current_liboctave_error_handler) |
|
65 ("ComplexSVD: V not computed because type == SVD::sigma_only"); |
|
66 return Matrix (); |
|
67 } |
|
68 else |
|
69 return right_sm; |
|
70 } |
|
71 |
457
|
72 int |
537
|
73 SVD::init (const Matrix& a, SVD::type svd_type) |
457
|
74 { |
|
75 int info; |
|
76 |
|
77 int m = a.rows (); |
|
78 int n = a.cols (); |
|
79 |
1930
|
80 Matrix atmp = a; |
|
81 double *tmp_data = atmp.fortran_vec (); |
457
|
82 |
|
83 int min_mn = m < n ? m : n; |
|
84 int max_mn = m > n ? m : n; |
|
85 |
1930
|
86 char jobu = 'A'; |
|
87 char jobv = 'A'; |
537
|
88 |
|
89 int ncol_u = m; |
|
90 int nrow_vt = n; |
|
91 int nrow_s = m; |
|
92 int ncol_s = n; |
|
93 |
1543
|
94 switch (svd_type) |
537
|
95 { |
1543
|
96 case SVD::economy: |
1930
|
97 jobu = jobv = 'S'; |
537
|
98 ncol_u = nrow_vt = nrow_s = ncol_s = min_mn; |
1543
|
99 break; |
|
100 |
|
101 case SVD::sigma_only: |
1930
|
102 jobu = jobv = 'N'; |
1545
|
103 ncol_u = nrow_vt = 1; |
1543
|
104 break; |
|
105 |
|
106 default: |
|
107 break; |
537
|
108 } |
|
109 |
1544
|
110 type_computed = svd_type; |
|
111 |
1930
|
112 if (jobu != 'N') |
1931
|
113 left_sm.resize (m, ncol_u); |
1930
|
114 |
|
115 double *u = left_sm.fortran_vec (); |
|
116 |
|
117 sigma.resize (nrow_s, ncol_s); |
|
118 double *s_vec = sigma.fortran_vec (); |
|
119 |
|
120 if (jobv != 'N') |
|
121 right_sm.resize (nrow_vt, n); |
|
122 |
|
123 double *vt = right_sm.fortran_vec (); |
457
|
124 |
|
125 int tmp1 = 3*min_mn + max_mn; |
|
126 int tmp2 = 5*min_mn - 4; |
|
127 int lwork = tmp1 > tmp2 ? tmp1 : tmp2; |
1930
|
128 |
|
129 Array<double> work (lwork); |
|
130 double *pwork = work.fortran_vec (); |
457
|
131 |
1930
|
132 F77_XFCN (dgesvd, DGESVD, (&jobu, &jobv, m, n, tmp_data, m, s_vec, |
|
133 u, m, vt, nrow_vt, pwork, lwork, info, |
|
134 1L, 1L)); |
1543
|
135 |
1930
|
136 if (f77_exception_encountered) |
|
137 (*current_liboctave_error_handler) ("unrecoverable error in dgesvd"); |
|
138 else |
1543
|
139 { |
1930
|
140 if (jobv != 'N') |
|
141 right_sm = right_sm.transpose (); |
1543
|
142 } |
457
|
143 |
|
144 return info; |
|
145 } |
|
146 |
|
147 ostream& |
|
148 operator << (ostream& os, const SVD& a) |
|
149 { |
|
150 os << a.left_singular_matrix () << "\n"; |
|
151 os << a.singular_values () << "\n"; |
|
152 os << a.right_singular_matrix () << "\n"; |
|
153 |
|
154 return os; |
|
155 } |
|
156 |
|
157 /* |
|
158 ;;; Local Variables: *** |
|
159 ;;; mode: C++ *** |
|
160 ;;; End: *** |
|
161 */ |