Uses of Interface
Maths.CompiledFunction

Packages that use CompiledFunction
Maths Provides maths classes. 
 

Uses of CompiledFunction in Maths
 

Classes in Maths that implement CompiledFunction
static class CompiledFunction.Add
          The addition function
static class CompiledFunction.Constant
          Represents a constant
static class CompiledFunction.Divide
          The divide function
static class CompiledFunction.Function
          Represents an arbitary function defined in a FunctionParser
static class CompiledFunction.Multiply
          The multiply function
static class CompiledFunction.Power
          The power function
static class CompiledFunction.Subtract
          The subtract function
static class CompiledFunction.Variable
          Represents a variable - simply returns the value of the variable
 

Methods in Maths that return CompiledFunction
 CompiledFunction MathsParse.compileFunction(java.lang.String equation)
          Parses an equation and returns a compiled function that can then be used to compute the value fo an equation.
 

Constructors in Maths with parameters of type CompiledFunction
CompiledFunction.Add(CompiledFunction a, CompiledFunction b)
          Default constructor
CompiledFunction.Divide(CompiledFunction a, CompiledFunction b)
          Default constructor
CompiledFunction.Function(FunctionParser p, java.lang.String name, CompiledFunction[] inputs)
          Default constructor
CompiledFunction.Multiply(CompiledFunction a, CompiledFunction b)
          Default constructor
CompiledFunction.Power(CompiledFunction a, CompiledFunction b)
          Default constructor
CompiledFunction.Subtract(CompiledFunction a, CompiledFunction b)
          Default constructor