C++ Memory Efficient Solution for Ax=b Linear Algebra System

前端 未结 6 1620
长情又很酷
长情又很酷 2020-12-23 12:46

I am using Numeric Library Bindings for Boost UBlas to solve a simple linear system. The following works fine, except it is limited to handling matrices A(m x m) for relativ

6条回答
  •  轮回少年
    2020-12-23 13:17

    Assuming your huge matrices are sparse, which I hope they are at that size, have a look at the PARDISO project which is a sparse linear solver, this is what you'll need if you want to handle matrices as big as you said. Allows efficient storage of only non-zero values, and is much faster than solving the same system of dense matrices.

提交回复
热议问题