conjugate_gradient {netprioR}R Documentation

Conjugate Gradient Solver

Description

Solves linear equation systems iteratively

Usage

conjugate_gradient(A, b, x0 = rep(0, ncol(A)), threshold = 1e-15,
  verbose = FALSE)

Arguments

A

Matrix

b

Coefficients

x0

Starting solution

threshold

Termination threshold

verbose

Show iterative progress

Value

Solution for equation system

Author(s)

Fabian Schmich


[Package netprioR version 1.16.0 Index]