All Packages Class Hierarchy This Package Previous Next Index
Class juice.solver.IterativeSlv
java.lang.Object
|
+----juice.solver.IterativeSlv
- public abstract class IterativeSlv
- extends Object
- implements IterativeSolver
IterativeSlv is an (partially?) implemented class that
various solvers extend.
std methods (individual method's may have better ways of computing
these methods. These methods may never be executed. In this case
these standard methods are overwritten.
-
A
-
-
b
-
-
iter
-
-
iterator
-
-
normResidual1
-
-
x
-
-
IterativeSlv()
-
-
getApproximation()
- A copy would be nicer: I have to loop over the entire data set.
-
getIteration()
-
-
getNormResidual()
-
-
getRelativeNormResidual()
-
-
getResidual()
-
-
solve(Operator, Vector, Vector)
- Solves Ax = b for x
"Solve" is used in a loose sense.
A
protected Operator A
x
protected Vector x
b
protected Vector b
iter
protected int iter
normResidual1
protected float normResidual1
iterator
protected Iterator iterator
IterativeSlv
public IterativeSlv()
getIteration
public int getIteration()
getApproximation
public Vector getApproximation()
- A copy would be nicer: I have to loop over the entire data set.
This would not happen if I had incorporated x into vertexList
instead of copying it. Don't know how to do this though.
getResidual
public Vector getResidual()
getNormResidual
public float getNormResidual()
getRelativeNormResidual
public float getRelativeNormResidual()
All Packages Class Hierarchy This Package Previous Next Index