mirror of
https://gitlab.com/libeigen/eigen.git
synced 2026-04-10 11:34:33 +08:00
Fixed conservativeResize.
Fixed multiple overloads for operator=. Removed debug output.
This commit is contained in:
@@ -54,8 +54,8 @@ template<typename MatrixType, unsigned int Options> void svd(const MatrixType& m
|
||||
MatrixUType u = svd.matrixU();
|
||||
MatrixVType v = svd.matrixV();
|
||||
|
||||
std::cout << "a\n" << a << std::endl;
|
||||
std::cout << "b\n" << u * sigma * v.adjoint() << std::endl;
|
||||
//std::cout << "a\n" << a << std::endl;
|
||||
//std::cout << "b\n" << u * sigma * v.adjoint() << std::endl;
|
||||
|
||||
VERIFY_IS_APPROX(a, u * sigma * v.adjoint());
|
||||
VERIFY_IS_UNITARY(u);
|
||||
|
||||
Reference in New Issue
Block a user