tracer.expression
Class tanFunc

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

public class tanFunc
extends oneArgFunction

Tangent function


Fields inherited from class tracer.expression.Function
numArgs
 
Constructor Summary
tanFunc()
           
 
Method Summary
 double apply(double a)
          Returns the trigonometric tangent of an angle.
 java.lang.String toString()
          Return string "TAN"
 
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

tanFunc

public tanFunc()
Method Detail

apply

public double apply(double a)
Returns the trigonometric tangent of an angle.
Overrides:
apply in class Function

toString

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