Solving a linear system with Lapack's dgeqrf_

后端 未结 2 1645
面向向阳花
面向向阳花 2020-12-15 02:00

I am trying to factorize a matrix with the QR factorization in C++, using Lapack\'s functions in order to solve a system of linear equations (Ax=b)

As far as I unde

2条回答
  •  旧时难觅i
    2020-12-15 02:34

    While this is an old question, but if you are looking for a way to solve LLS using QR with LAPACK use dgels, it does the same as the answer above.

提交回复
热议问题