Fast solution of dense linear system of fixed dimension (N=9), symmetric, positive-semidefinite

后端 未结 6 466
旧巷少年郎
旧巷少年郎 2021-01-18 04:10

Which algorithm you would recommend for fast solution of dense linear system of fixed dimension (N=9) (matrix is symmetric, positive-semidefinite)?

  • Gaussian el
6条回答
  •  甜味超标
    2021-01-18 05:06

    Because of its ease of use, you can take Eigen solvers just for comparison. For specific use case a specific solver might be faster although another is supposed to be better. For that, you can measure runtimes for the each algorithm just for the selection. After that you can implement the desired option (or find an existing one that fits your needs the best).

提交回复
热议问题