SVD.h File Reference
#include <Core/Matrix/Matrix2x2.h>
#include <Core/Matrix/Matrix3x3.h>
#include <Core/Matrix/Matrix4x4.h>
#include <Core/Matrix/MatrixMxN.h>
#include <Core/Vector/VectorN.h>
#include <Core/Math/SVD-Impl.h>
Go to the source code of this file.
Namespaces | |
CubbyFlow | |
Functions | |
template<typename T > | |
void | CubbyFlow::SVD (const MatrixMxN< T > &a, MatrixMxN< T > &u, VectorN< T > &w, MatrixMxN< T > &v) |
Singular value decomposition (SVD). More... | |
template<typename T , size_t M, size_t N> | |
void | CubbyFlow::SVD (const Matrix< T, M, N > &a, Matrix< T, M, N > &u, Vector< T, N > &w, Matrix< T, N, N > &v) |
Singular value decomposition (SVD). More... | |