SuanShu, a Java numerical and statistical library

com.numericalmethod.suanshu.matrix.doubles.matrixtype.sparse.solver.iterative
Interface IterationMonitor

All Known Implementing Classes:
CountMonitor, IteratesMonitor, NullMonitor

public interface IterationMonitor

An instance of this class is passed into an iterative method to monitor each iterate generated in each iteration.


Method Summary
 void addIterate(Vector x)
          Add a newly computed iterate to this monitor.
 

Method Detail

addIterate

void addIterate(Vector x)
Add a newly computed iterate to this monitor. This should also be called with the initial guess of solution.

Parameters:
x - the new iterate

SuanShu, a Java numerical and statistical library

Copyright © 2011 Numerical Method Inc. Ltd. All Rights Reserved.