Boost's Linear Algebra Solution for y=Ax

前端 未结 6 1449
感动是毒
感动是毒 2020-12-29 13:24

Does boost have one? Where A, y and x is a matrix (sparse and can be very large) and vectors respectively. Either y or x can be unknown.

I can\'t seem to find it her

6条回答
  •  無奈伤痛
    2020-12-29 13:44

    Boost's linear algebra package's tuning focused on "dense matrices". As far as I know, Boost's package do not have any linear-system-solver. How about use source code in "Numerical Recipe in C (http://www.nr.com/oldverswitcher.html)" ?

    Note. There can be subtle index bug in the source code (some code uses array index start from 1)

提交回复
热议问题