IntegralResults class

Holds a series of results returned by NumericalIntegration.integrate:

  • the list of guesses computed by the algorithm,
  • the actual result (the value of the integral on an [a, b] interval).

Constructors

IntegralResults({required List<double> guesses, required double result})
The list of guesses is iteratively built by the algorithm while the final result is the actual value of the integral in the [a, b] interval.
const

Properties

guesses List<double>
List of values guessed by the algorithm.
final
hashCode int
The hash code for this object.
no setteroverride
result double
The result of the integral on an [a, b] interval.
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
override

Operators

operator ==(Object other) bool
The equality operator.
override