conjugate_gradient {netprioR} | R Documentation |
Solves linear equation systems iteratively
conjugate_gradient(A, b, x0 = rep(0, ncol(A)), threshold = 1e-15, verbose = FALSE)
A |
Matrix |
b |
Coefficients |
x0 |
Starting solution |
threshold |
Termination threshold |
verbose |
Show iterative progress |
Solution for equation system
Fabian Schmich