MatrixDecomposition.h 619 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. /**
  2. * @file MatrixDecomposition.h
  3. * @brief: Abstract class for matrix decompositions (LU, SVD, cholesky, householder, ...)
  4. * @author: Alexander Freytag
  5. * @date: 22-10-2012
  6. */
  7. #ifndef _NICE_MATRIXDECOMPOSITION_
  8. #define _NICE_MATRIXDECOMPOSITION_
  9. namespace NICE
  10. {
  11. /*!
  12. Abstract class for matrix decompositions (LU, SVD, cholesky, householder, ...)
  13. */
  14. class MatrixDecomposition
  15. {
  16. public:
  17. /*!
  18. default constructor
  19. */
  20. MatrixDecomposition(){};
  21. /*!
  22. Destructor.
  23. */
  24. virtual ~MatrixDecomposition(){};
  25. protected:
  26. };
  27. } //namespace
  28. #endif