1

以下代码片段死于 Eigen 断言:

MatrixXd L;
VectorXd x, b;
...
ASSERT_MATRIX_EQ(L*x, b);

和,

template <typename DerivedL, typename DerivedR>
void ASSERT_MATRIX_EQ(const Eigen::DenseBase<DerivedL>& A, const Eigen::DenseBase<DerivedR>& B, double tol=1e-7) {
    ASSERT_EQ(A.rows(), B.rows());
    ASSERT_EQ(A.cols(), B.cols());
    for(int i=0; i < A.rows(); i++) {
        for(int j=0; j < A.cols(); j++) {
            ASSERT_NEAR(A(i,j), B(i,j), tol);
        }
    }
}

它因错误而死:

test_leq: /usr/include/eigen3/Eigen/src/Core/ProductBase.h:154: typename Base::CoeffReturnType Eigen::ProductBase<Eigen::GeneralProduct<Eigen::Matrix<double, -1, -1, 0, -1, -1>, Eigen::Matrix<double, -1, 1, 0, -1, 1>, 4>, Eigen::Matrix<double, -1, -1, 0, -1, -1>, Eigen::Matrix<double, -1, 1, 0, -1, 1> >::coeff(Index, Index) const: Assertion `this->rows() == 1 && this->cols() == 1' failed.

在调用A(i,j). (不过,我可以打电话cout << A << endl;就好了。)

在第 154 行,ProductBase.h奇怪的是断言

    // restrict coeff accessors to 1x1 expressions. No need to care about mutators here since this isnt a Lvalue expression
    typename Base::CoeffReturnType coeff(Index row, Index col) const
    {
#ifdef EIGEN2_SUPPORT
      return lhs().row(row).cwiseProduct(rhs().col(col).transpose()).sum();
#else
      EIGEN_STATIC_ASSERT_SIZE_1x1(Derived)
      eigen_assert(this->rows() == 1 && this->cols() == 1);
      return derived().coeff(row,col);
#endif
    }

我正在遵循Eigen编写通用矩阵函数的指南。如何正确编写此通用函数?

编辑:很高兴知道为什么ProductBase需要一个 1x1 矩阵。

4

1 回答 1

1

Eigen 邮件列表上的一个线程表明对 a 的系数访问ProductBase被故意禁用。目前的解决方案是避免像foobar(A*x).

于 2013-08-11T07:10:49.363 回答