MathNode class abstract
Basic math expression unit
Defines the calc method for every child to implement.
- Inheritance
-
- Object
- MathExpression
- MathNode
- Implementers
- Available extensions
Constructors
- MathNode.new()
-
Creates a new math expression node
const
Properties
- hashCode → int
-
The hash code for this object.
no setterinherited
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
Methods
-
calc(
MathVariableValues values, {MathCustomFunctionsImplemented customFunctions}) → num -
Evaluate the expression
override
-
definiteIntegralByLeftRectangles(
int n, num lowerLimit, num upperLimit) → num -
Available on MathNode, provided by the MathNodeDefiniteIntegral extension
Definite Integral By Left Rectangles -
definiteIntegralByMiddleRectangles(
int n, num lowerLimit, num upperLimit) → num -
Available on MathNode, provided by the MathNodeDefiniteIntegral extension
Definite Integral By Middle Rectangles -
definiteIntegralByRightRectangles(
int n, num lowerLimit, num upperLimit) → num -
Available on MathNode, provided by the MathNodeDefiniteIntegral extension
Definite Integral By Right Rectangles -
definiteIntegralBySimpson(
int n, num lowerLimit, num upperLimit) → num -
Available on MathNode, provided by the MathNodeDefiniteIntegral extension
Definite Integral By Simpson -
definiteIntegralByTrapezoids(
int n, num lowerLimit, num upperLimit) → num -
Available on MathNode, provided by the MathNodeDefiniteIntegral extension
Definite Integral By Trapezoids -
getUsedFreeformFunctions(
) → Set< MathDefinitionFunctionFreeform> -
Get mentioned custom defined functions that are required to evaluate the expression
inherited
-
getUsedVariables(
) → Set< String> -
Get mentioned variables that are required to evaluate the expression
inherited
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited