All Packages  Class Hierarchy  This Package  Previous  Next  Index

Interface rootsolvers.Solved

public interface Solved
An interface which provides the function being solved to root-finding algorithms. This approach to using an interface closely follows the examples in Core Java 1.1, Volume 1 by Horstmann & Cornell.

Version:
$Revision: 1.1.1.1 $, $Date: 1999/11/15 20:37:49 $.
Author:
Daren Stotler
See Also:
RootSolverException

Method Index

 o calcfOfX(double)
This is the function to be solved.

Methods

 o calcfOfX
 public abstract double calcfOfX(double x)
This is the function to be solved.

Parameters:
x - point at which function is to be evaluated
Returns:
function value for use in solution algorithm

All Packages  Class Hierarchy  This Package  Previous  Next  Index