Uses of Class
edu.hws.jcm.data.Cases

Packages that use Cases
data   
edu.hws.jcm.awt   
edu.hws.jcm.data   
edu.hws.jcm.functions   
 

Uses of Cases in data
 

Methods in data with parameters of type Cases
 void StandardNormalTable.apply(StackOfDouble stack, Cases cases)
          Returns the evaluation of the function using the real number on the top of the stack as a parameter.
 double StandardNormalTable.getValueWithCases(double[] params, Cases cases)
          This function is simply a wrapper.
 

Uses of Cases in edu.hws.jcm.awt
 

Methods in edu.hws.jcm.awt with parameters of type Cases
 double ExpressionInput.EI.getValueWithCases(Cases c)
           
 

Uses of Cases in edu.hws.jcm.data
 

Methods in edu.hws.jcm.data with parameters of type Cases
 void ConditionalExpression.apply(StackOfDouble stack, Cases cases)
          Apply this ConditionalExpression to the stack.
 void Constant.apply(StackOfDouble stack, Cases cases)
          Apply the Constant to the stack.
 void ExpressionCommand.apply(StackOfDouble stack, Cases cases)
          This routine is called when an ExpressionCommand object is encountered during the evaluation of an ExpressionProgram.
 boolean Cases.equals(Cases c)
          Test whether c contains exactly the same list of case values as this Cases object does.
 double Constant.getValueWithCases(Cases cases)
          Return the value of the Constant.
 double Expression.getValueWithCases(Cases cases)
          Compute and return the value of this expression.
 double ExpressionProgram.getValueWithCases(Cases c)
          Run the ExprssionProgram and return the value that it computes.
 double Function.getValueWithCases(double[] arguments, Cases cases)
          Find the value of the function at the argument values given by arguments[0], arguments[1], ...
 double SimpleFunction.getValueWithCases(double[] arguments, Cases cases)
          Find the value of the function at the argument values argument[0], argument[1]....
 

Uses of Cases in edu.hws.jcm.functions
 

Methods in edu.hws.jcm.functions with parameters of type Cases
 void ExpressionFunction.apply(StackOfDouble stack, Cases cases)
          Find the value of the function applied to arguments popped from the stack, and push the result back onto the stack.
 void FunctionParserExtension.apply(StackOfDouble stack, Cases cases)
          Evaluate the function applied to argument values popped from the stack, and leave the result on the stack.
 void TableFunction.apply(StackOfDouble stack, Cases cases)
          Override method apply() from interface FunctionParserExtension, to handle cases properly.
 void WrapperFunction.apply(StackOfDouble stack, Cases cases)
          Evaluate the function applied to argument values popped from the stack, and leave the result on the stack.
 double ExpressionFunction.getValueWithCases(double[] arguments, Cases cases)
          Find the value of the function at the argument values given by arguments[0], arguments[1], ...
 double TableFunction.getValueWithCases(double[] params, Cases cases)
          Get the value of the function at the specified parameter value.
 double WrapperFunction.getValueWithCases(double[] arguments, Cases cases)
          Find the value of the function at the argument values argument[0],....