optimization
Class FminTest

java.lang.Object
  extended by optimization.FminTest
All Implemented Interfaces:
Fmin_methods

public class FminTest
extends java.lang.Object
implements Fmin_methods

This class tests the Fmin class.

Modified by Eric Eaton to use a new Console class as a substitute for corejava.Console.

Version:
.5 --- March 25, 1998
Author:
Steve Verrill

Method Summary
 double f_to_minimize(double x)
          Defines a function f : double -> double to minimize.
static void main(java.lang.String[] args)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Method Detail

main

public static void main(java.lang.String[] args)

f_to_minimize

public double f_to_minimize(double x)
Description copied from interface: Fmin_methods
Defines a function f : double -> double to minimize.

Specified by:
f_to_minimize in interface Fmin_methods
Parameters:
x - the input x
Returns:
the value f(x) of the function applied to x.