All Classes Namespaces Functions Variables Typedefs Enumerator Groups Pages
SVDBase.h
1 // This file is part of Eigen, a lightweight C++ template library
2 // for linear algebra.
3 //
4 // Copyright (C) 2009-2010 Benoit Jacob <[email protected]>
5 //
6 // Copyright (C) 2013 Gauthier Brun <[email protected]>
7 // Copyright (C) 2013 Nicolas Carre <[email protected]>
8 // Copyright (C) 2013 Jean Ceccato <[email protected]>
9 // Copyright (C) 2013 Pierre Zoppitelli <[email protected]>
10 //
11 // This Source Code Form is subject to the terms of the Mozilla
12 // Public License v. 2.0. If a copy of the MPL was not distributed
13 // with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
14 
15 #ifndef EIGEN_SVD_H
16 #define EIGEN_SVD_H
17 
18 namespace Eigen {
45 template<typename _MatrixType>
46 class SVDBase
47 {
48 
49 public:
50  typedef _MatrixType MatrixType;
51  typedef typename MatrixType::Scalar Scalar;
52  typedef typename NumTraits<typename MatrixType::Scalar>::Real RealScalar;
53  typedef typename MatrixType::Index Index;
54  enum {
55  RowsAtCompileTime = MatrixType::RowsAtCompileTime,
56  ColsAtCompileTime = MatrixType::ColsAtCompileTime,
57  DiagSizeAtCompileTime = EIGEN_SIZE_MIN_PREFER_DYNAMIC(RowsAtCompileTime,ColsAtCompileTime),
58  MaxRowsAtCompileTime = MatrixType::MaxRowsAtCompileTime,
59  MaxColsAtCompileTime = MatrixType::MaxColsAtCompileTime,
60  MaxDiagSizeAtCompileTime = EIGEN_SIZE_MIN_PREFER_FIXED(MaxRowsAtCompileTime,MaxColsAtCompileTime),
61  MatrixOptions = MatrixType::Options
62  };
63 
64  typedef Matrix<Scalar, RowsAtCompileTime, RowsAtCompileTime,
65  MatrixOptions, MaxRowsAtCompileTime, MaxRowsAtCompileTime>
66  MatrixUType;
67  typedef Matrix<Scalar, ColsAtCompileTime, ColsAtCompileTime,
68  MatrixOptions, MaxColsAtCompileTime, MaxColsAtCompileTime>
69  MatrixVType;
70  typedef typename internal::plain_diag_type<MatrixType, RealScalar>::type SingularValuesType;
71  typedef typename internal::plain_row_type<MatrixType>::type RowType;
72  typedef typename internal::plain_col_type<MatrixType>::type ColType;
73  typedef Matrix<Scalar, DiagSizeAtCompileTime, DiagSizeAtCompileTime,
74  MatrixOptions, MaxDiagSizeAtCompileTime, MaxDiagSizeAtCompileTime>
75  WorkMatrixType;
76 
77 
78 
79 
90  SVDBase& compute(const MatrixType& matrix, unsigned int computationOptions);
91 
98  //virtual SVDBase& compute(const MatrixType& matrix) = 0;
99  SVDBase& compute(const MatrixType& matrix);
100 
110  const MatrixUType& matrixU() const
111  {
112  eigen_assert(m_isInitialized && "SVD is not initialized.");
113  eigen_assert(computeU() && "This SVD decomposition didn't compute U. Did you ask for it?");
114  return m_matrixU;
115  }
116 
126  const MatrixVType& matrixV() const
127  {
128  eigen_assert(m_isInitialized && "SVD is not initialized.");
129  eigen_assert(computeV() && "This SVD decomposition didn't compute V. Did you ask for it?");
130  return m_matrixV;
131  }
132 
138  const SingularValuesType& singularValues() const
139  {
140  eigen_assert(m_isInitialized && "SVD is not initialized.");
141  return m_singularValues;
142  }
143 
144 
145 
147  Index nonzeroSingularValues() const
148  {
149  eigen_assert(m_isInitialized && "SVD is not initialized.");
150  return m_nonzeroSingularValues;
151  }
152 
153 
155  inline bool computeU() const { return m_computeFullU || m_computeThinU; }
157  inline bool computeV() const { return m_computeFullV || m_computeThinV; }
158 
159 
160  inline Index rows() const { return m_rows; }
161  inline Index cols() const { return m_cols; }
162 
163 
164 protected:
165  // return true if already allocated
166  bool allocate(Index rows, Index cols, unsigned int computationOptions) ;
167 
168  MatrixUType m_matrixU;
169  MatrixVType m_matrixV;
170  SingularValuesType m_singularValues;
171  bool m_isInitialized, m_isAllocated;
172  bool m_computeFullU, m_computeThinU;
173  bool m_computeFullV, m_computeThinV;
174  unsigned int m_computationOptions;
175  Index m_nonzeroSingularValues, m_rows, m_cols, m_diagSize;
176 
177 
183  : m_isInitialized(false),
184  m_isAllocated(false),
185  m_computationOptions(0),
186  m_rows(-1), m_cols(-1)
187  {}
188 
189 
190 };
191 
192 
193 template<typename MatrixType>
194 bool SVDBase<MatrixType>::allocate(Index rows, Index cols, unsigned int computationOptions)
195 {
196  eigen_assert(rows >= 0 && cols >= 0);
197 
198  if (m_isAllocated &&
199  rows == m_rows &&
200  cols == m_cols &&
201  computationOptions == m_computationOptions)
202  {
203  return true;
204  }
205 
206  m_rows = rows;
207  m_cols = cols;
208  m_isInitialized = false;
209  m_isAllocated = true;
210  m_computationOptions = computationOptions;
211  m_computeFullU = (computationOptions & ComputeFullU) != 0;
212  m_computeThinU = (computationOptions & ComputeThinU) != 0;
213  m_computeFullV = (computationOptions & ComputeFullV) != 0;
214  m_computeThinV = (computationOptions & ComputeThinV) != 0;
215  eigen_assert(!(m_computeFullU && m_computeThinU) && "SVDBase: you can't ask for both full and thin U");
216  eigen_assert(!(m_computeFullV && m_computeThinV) && "SVDBase: you can't ask for both full and thin V");
217  eigen_assert(EIGEN_IMPLIES(m_computeThinU || m_computeThinV, MatrixType::ColsAtCompileTime==Dynamic) &&
218  "SVDBase: thin U and V are only available when your matrix has a dynamic number of columns.");
219 
220  m_diagSize = (std::min)(m_rows, m_cols);
221  m_singularValues.resize(m_diagSize);
222  if(RowsAtCompileTime==Dynamic)
223  m_matrixU.resize(m_rows, m_computeFullU ? m_rows
224  : m_computeThinU ? m_diagSize
225  : 0);
226  if(ColsAtCompileTime==Dynamic)
227  m_matrixV.resize(m_cols, m_computeFullV ? m_cols
228  : m_computeThinV ? m_diagSize
229  : 0);
230 
231  return false;
232 }
233 
234 }// end namespace
235 
236 #endif // EIGEN_SVD_H
const MatrixUType & matrixU() const
Definition: SVDBase.h:110
bool computeU() const
Definition: SVDBase.h:155
Mother class of SVD classes algorithms.
Definition: SVDBase.h:46
SVDBase()
Default Constructor.
Definition: SVDBase.h:182
const SingularValuesType & singularValues() const
Definition: SVDBase.h:138
SVDBase & compute(const MatrixType &matrix, unsigned int computationOptions)
Method performing the decomposition of given matrix using custom options.
const MatrixVType & matrixV() const
Definition: SVDBase.h:126
bool computeV() const
Definition: SVDBase.h:157
Index nonzeroSingularValues() const
Definition: SVDBase.h:147