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

前端 未结 6 1622
长情又很酷
长情又很酷 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条回答
  •  Happy的楠姐
    2020-12-23 13:22

    As the accepted answer suggests there is UMFPACK. But if you are using BOOST you can still use the compact matrices in BOOST and use UMFPACK to solve the system. There is a binding which makes it easy:

    http://mathema.tician.de/software/boost-numeric-bindings

    Its about two years dated, but its just a binding (along with a few others).

    see related question: UMFPACK and BOOST's uBLAS Sparse Matrix

提交回复
热议问题