matrix_factorisation.hpp 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. /// @ref gtx_matrix_factorisation
  2. /// @file glm/gtx/matrix_factorisation.hpp
  3. ///
  4. /// @see core (dependence)
  5. ///
  6. /// @defgroup gtx_matrix_factorisation GLM_GTX_matrix_factorisation
  7. /// @ingroup gtx
  8. ///
  9. /// Include <glm/gtx/matrix_factorisation.hpp> to use the features of this extension.
  10. ///
  11. /// Functions to factor matrices in various forms
  12. #pragma once
  13. // Dependency:
  14. #include "../glm.hpp"
  15. #ifndef GLM_ENABLE_EXPERIMENTAL
  16. # error "GLM: GLM_GTX_matrix_factorisation is an experimental extension and may change in the future. Use #define GLM_ENABLE_EXPERIMENTAL before including it, if you really want to use it."
  17. #endif
  18. #if GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
  19. # pragma message("GLM: GLM_GTX_matrix_factorisation extension included")
  20. #endif
  21. /*
  22. Suggestions:
  23. - Move helper functions flipud and fliplr to another file: They may be helpful in more general circumstances.
  24. - Implement other types of matrix factorisation, such as: QL and LQ, L(D)U, eigendecompositions, etc...
  25. */
  26. namespace glm
  27. {
  28. /// @addtogroup gtx_matrix_factorisation
  29. /// @{
  30. /// Flips the matrix rows up and down.
  31. ///
  32. /// From GLM_GTX_matrix_factorisation extension.
  33. template <length_t C, length_t R, typename T, qualifier Q>
  34. GLM_FUNC_DECL mat<C, R, T, Q> flipud(mat<C, R, T, Q> const& in);
  35. /// Flips the matrix columns right and left.
  36. ///
  37. /// From GLM_GTX_matrix_factorisation extension.
  38. template <length_t C, length_t R, typename T, qualifier Q>
  39. GLM_FUNC_DECL mat<C, R, T, Q> fliplr(mat<C, R, T, Q> const& in);
  40. /// Performs QR factorisation of a matrix.
  41. /// Returns 2 matrices, q and r, such that the columns of q are orthonormal and span the same subspace than those of the input matrix, r is an upper triangular matrix, and q*r=in.
  42. /// Given an n-by-m input matrix, q has dimensions min(n,m)-by-m, and r has dimensions n-by-min(n,m).
  43. ///
  44. /// From GLM_GTX_matrix_factorisation extension.
  45. template <length_t C, length_t R, typename T, qualifier Q>
  46. GLM_FUNC_DECL void qr_decompose(mat<C, R, T, Q> const& in, mat<(C < R ? C : R), R, T, Q>& q, mat<C, (C < R ? C : R), T, Q>& r);
  47. /// Performs RQ factorisation of a matrix.
  48. /// Returns 2 matrices, r and q, such that r is an upper triangular matrix, the rows of q are orthonormal and span the same subspace than those of the input matrix, and r*q=in.
  49. /// Note that in the context of RQ factorisation, the diagonal is seen as starting in the lower-right corner of the matrix, instead of the usual upper-left.
  50. /// Given an n-by-m input matrix, r has dimensions min(n,m)-by-m, and q has dimensions n-by-min(n,m).
  51. ///
  52. /// From GLM_GTX_matrix_factorisation extension.
  53. template <length_t C, length_t R, typename T, qualifier Q>
  54. GLM_FUNC_DECL void rq_decompose(mat<C, R, T, Q> const& in, mat<(C < R ? C : R), R, T, Q>& r, mat<C, (C < R ? C : R), T, Q>& q);
  55. /// @}
  56. }
  57. #include "matrix_factorisation.inl"