jdmoorman / kaczmarz-algorithms

Variants of the Kaczmarz algorithm for solving linear systems in Python.
MIT License
10 stars 5 forks source link

Explain why tol and maxiter are useful. Give an example. #26

Open jdmoorman opened 4 years ago

jdmoorman commented 4 years ago

maxiter is often useful when you are analyzing inconsistent systems, since the Kaczmarz algorithm will never terminate on its own if the equations cannot be solved.

jdmoorman commented 4 years ago

Should also explain the calback argument.