mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-03-31 19:00:35 +08:00
Fix compilation error in createRandomMatrixOfRank()
This commit is contained in:
parent
6358c12998
commit
e3d64cb418
@ -230,7 +230,7 @@ template<typename Derived>
|
||||
void createRandomMatrixOfRank(int desired_rank, int rows, int cols, Eigen::MatrixBase<Derived>& m)
|
||||
{
|
||||
typedef Derived MatrixType;
|
||||
typedef MatrixType::Scalar Scalar;
|
||||
typedef typename ei_traits<MatrixType>::Scalar Scalar;
|
||||
typedef Matrix<Scalar, MatrixType::ColsAtCompileTime, 1> VectorType;
|
||||
|
||||
MatrixType a = MatrixType::Random(rows,rows);
|
||||
|
Loading…
x
Reference in New Issue
Block a user