mathExpr
library.See: Description
Class | Description |
---|---|
Addition |
The BinaryOperation with the operator '+'.
|
BinaryOperation |
A
BinaryOperation is an Expression which
represents a mathematical binary operation (addition, subtraction,
multiplication, division or power operation) of two other
Expressions (the operands). |
Division |
The BinaryOperation with the operator '/'.
|
Expression |
An
Expression describes a mathematical expression (term)
and usually it is the result of a String -parsing by
the Parser . |
ExpressionFactory |
Provides methods to create most possible kinds of
Expressions . |
FunctionCall |
A
FunctionCall is a UnaryOperation which
represents a mathematical function call (e.g.: f(2)). |
List |
A
List is an Expression which represents a list of
other Expressions . |
Multiplication |
The BinaryOperation with the operator '*'.
|
NegativeSign |
The UnaryOperation with the operator '-'.
|
PositiveSign |
The UnaryOperation with the operator '+'.
|
Power |
The BinaryOperation with the operator '^'.
|
Subtraction |
The BinaryOperation with the operator '-'.
|
Symbol | |
UnaryOperation |
A
UnaryOperation is an Expression which
represents a mathematical unary operation (positive sign, negative sign or
a FunctionCall ) of another Expression
(the operand). |
mathExpr
library.