Y
Hacker News
new
|
ask
|
show
|
jobs
by
clarkeni
2464 days ago
What would you use to solve the system? Iterative methods or gradient descent even?
3 comments
plus
2464 days ago
Something like MINRES or GMRES or CGSTAB. Correct me if I'm wrong, but the covariance matrix in GPR should be diagonally dominant, so the diagonal of the matrix can be used as a somewhat effective preconditioner.
link
nestorD
2464 days ago
With most kernels the matrix is symmetric and positive-definite so I would probably use a conjugate gradient:
https://en.wikipedia.org/wiki/Conjugate_gradient_method
link
lp251
2464 days ago
yes
link