mirror of
https://gitlab.com/libeigen/eigen.git
synced 2026-04-10 11:34:33 +08:00
make UpperBidiagonalization internal: don't want to support it, it's not used.
Keeping it because it tests BandMatrix.
This commit is contained in:
@@ -34,7 +34,7 @@ template<typename MatrixType> void upperbidiag(const MatrixType& m)
|
||||
typedef Matrix<typename MatrixType::RealScalar, MatrixType::RowsAtCompileTime, MatrixType::ColsAtCompileTime> RealMatrixType;
|
||||
|
||||
MatrixType a = MatrixType::Random(rows,cols);
|
||||
UpperBidiagonalization<MatrixType> ubd(a);
|
||||
internal::UpperBidiagonalization<MatrixType> ubd(a);
|
||||
RealMatrixType b(rows, cols);
|
||||
b.setZero();
|
||||
b.block(0,0,cols,cols) = ubd.bidiagonal();
|
||||
|
||||
Reference in New Issue
Block a user