org.lsmp.djep.xjep.function
Class MinArg

java.lang.Object
  extended by org.nfunk.jep.function.PostfixMathCommand
      extended by org.lsmp.djep.xjep.function.SumType
          extended by org.lsmp.djep.xjep.function.MinArg
All Implemented Interfaces:
CallbackEvaluationI, PostfixMathCommandI

public class MinArg
extends SumType

Author:
Rich Morris Created on 10-Sep-2004

Field Summary
 
Fields inherited from class org.lsmp.djep.xjep.function.SumType
name
 
Fields inherited from class org.nfunk.jep.function.PostfixMathCommand
curNumberOfParameters, numberOfParameters
 
Constructor Summary
MinArg()
           
 
Method Summary
 java.lang.Object evaluate(Node node, Variable var, double min, double max, double inc, EvaluatorI pv)
          Evaluates the node by repeatibly setting the value of the variable from min to max, and calculating the value of the first argument.
 java.lang.Object evaluate(java.lang.Object[] elements)
          Evaluates the function given the set of y values.
 
Methods inherited from class org.lsmp.djep.xjep.function.SumType
checkNumberOfParameters, evaluate, run
 
Methods inherited from class org.nfunk.jep.function.PostfixMathCommand
checkStack, getNumberOfParameters, setCurNumberOfParameters
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

MinArg

public MinArg()
Method Detail

evaluate

public java.lang.Object evaluate(java.lang.Object[] elements)
                          throws ParseException
Description copied from class: SumType
Evaluates the function given the set of y values. For example for Sum(x^2,x,1,5) the function will be passed the array [1,4,9,16,25].

Specified by:
evaluate in class SumType
Parameters:
elements - the y values
Returns:
the result of the function
Throws:
ParseException

evaluate

public java.lang.Object evaluate(Node node,
                                 Variable var,
                                 double min,
                                 double max,
                                 double inc,
                                 EvaluatorI pv)
                          throws ParseException
Description copied from class: SumType
Evaluates the node by repeatibly setting the value of the variable from min to max, and calculating the value of the first argument. Sub classes generally do not need to implement this method as SumType.evaluate(Object[]) is more useful. If they do they should follow the pattern used here.

Overrides:
evaluate in class SumType
Returns:
the result of evaluation
Throws:
ParseException


http://www.singularsys.com/jep Copyright © 2007 Singular Systems