Class Exp

java.lang.Object
  |
  +--PostfixMathCommand
        |
        +--Exp

public class Exp
extends PostfixMathCommand

An extension to the Java Expression Parser (JEP) to allow an exponential function to be expressed as "exp(x)", rather than "e^x". JEP may be obtained from http://jep.sourceforge.net. Newer versions may include this extension.

See Also:
Serialized Form

Constructor Summary
Exp()
           
 
Method Summary
 void run(java.util.Stack inStack)
          Applies the function to the parameters on the stack.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

Exp

public Exp()
Method Detail

run

public void run(java.util.Stack inStack)
         throws ParseException
Applies the function to the parameters on the stack.

ParseException