JSci.maths.analysis
Class Exponential

java.lang.Object
  extended byJSci.maths.analysis.RealFunction
      extended byJSci.maths.analysis.Exponential
All Implemented Interfaces:
AbelianGroup.Member, Mapping, Member, Ring.Member, java.io.Serializable

public class Exponential
extends RealFunction

The exponential function.

See Also:
Serialized Form

Constructor Summary
Exponential(double A, double w, double k)
          Constructs an exponential function of the form A exp(wx+k).
 
Method Summary
 RealFunction differentiate()
          Returns the differential of this function.
 double map(double x)
          A user-defined function.
 
Methods inherited from class JSci.maths.analysis.RealFunction
add, add, compose, multiply, multiply, negate, subtract, subtract, taylorExpand, tensor
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

Exponential

public Exponential(double A,
                   double w,
                   double k)
Constructs an exponential function of the form A exp(wx+k).

Method Detail

map

public double map(double x)
Description copied from interface: Mapping
A user-defined function.


differentiate

public RealFunction differentiate()
Description copied from class: RealFunction
Returns the differential of this function.

Specified by:
differentiate in class RealFunction