Package | Description |
---|---|
Maths |
Provides maths classes.
|
Modifier and Type | Class and Description |
---|---|
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
|
Modifier and Type | Method and Description |
---|---|
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.
|
Constructor and Description |
---|
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
|