Fix compilation error in createRandomMatrixOfRank()

This commit is contained in:
Jitse Niesen 2009-05-17 21:17:45 +01:00
parent 6358c12998
commit e3d64cb418

View File

@ -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);