gpt4 book ai didi

c++ - 具有特征库的 MatrixFree-Matrix(和 Vector)乘积

转载 作者:塔克拉玛干 更新时间:2023-11-03 07:44:49 27 4
gpt4 key购买 nike

我正在创建一个 C++ 软件,我需要一个包装器,它基于 Eigen 库,实现类似于官方网页中解释的运算符*

https://eigen.tuxfamily.org/dox/group__MatrixfreeSolverExample.html

使用上述网页中的代码,我可以将我的模板化类包装在 MatrixReplacement 类中。

保留示例中 MatrixReplacement 的实现,以下(主要)代码有效

int main()
{
int n = 10;
Eigen::SparseMatrix<double> S = Eigen::MatrixXd::Random(n,n).sparseView(0.5,1);
S = S.transpose()*S;
MatrixReplacement A;
A.attachMyMatrix(S);
Eigen::VectorXd b(n,1), x1(n,1), x2(n,1);
b.setRandom();

x1.noalias() = A * b;
x2.noalias() = S * b;
std::cout<<(x1-x2).colwise().norm()<<std::endl;
}

但是如果不使用 vector ,我想对 b 和 x 使用矩阵 代码不会编译提示缺少成员和类型

int main()
{
int n = 10;
Eigen::SparseMatrix<double> S = Eigen::MatrixXd::Random(n,n).sparseView(0.5,1);
S = S.transpose()*S;
MatrixReplacement A;
A.attachMyMatrix(S);
Eigen::MatrixXd b(n,3), x1(n,3), x2(n,3);
b.setRandom();

x1.noalias() = A * b; //<<<<<<<<<<< COMPILE ERROR
x2.noalias() = S * b;
std::cout<<(x1-x2).colwise().norm()<<std::endl;
}

我的问题是:网页上的示例缺少什么 https://eigen.tuxfamily.org/dox/group__MatrixfreeSolverExample.html为了与我的第二个主要工作?

谢谢!


编辑:在网页的例子中for循环

for(Index i=0; i<lhs.cols(); ++i)
dst += rhs(i) * lhs.my_matrix().col(i);

需要改成类似的东西

for(Index i=0; i<lhs.cols(); ++i)
for(Index j=0; j<rhs.cols(); ++j)
dst.col(j) += rhs(i,j) * lhs.my_matrix().col(i);

或简单地

dst.noalias() += lhs.my_matrix() * rhs

最佳答案

internal::generic_product_impl的特化中,需要将GemvProduct改为GemmProduct

关于c++ - 具有特征库的 MatrixFree-Matrix(和 Vector)乘积,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41041365/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com