tracer.expression
Class exp10Func

java.lang.Object
  |
  +--tracer.expression.Function
        |
        +--tracer.expression.oneArgFunction
              |
              +--tracer.expression.exp10Func

public class exp10Func
extends oneArgFunction

Exponential function


Fields inherited from class tracer.expression.Function
numArgs
 
Constructor Summary
exp10Func()
           
 
Method Summary
 double apply(double a)
          Returns the exponential number e(2.718...) raised to the power of a.
 java.lang.String toString()
          Return string "EXP"
 
Methods inherited from class tracer.expression.oneArgFunction
apply
 
Methods inherited from class java.lang.Object
, clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

exp10Func

public exp10Func()
Method Detail

apply

public double apply(double a)
Returns the exponential number e(2.718...) raised to the power of a.
Overrides:
apply in class Function

toString

public java.lang.String toString()
Return string "EXP"
Overrides:
toString in class Function