NonlinearResults class

Holds a series of results returned by NonLinear.solve:

  • the list of guesses computed by the algorithm,
  • the rate of convergence (if possible),
  • the efficiency of the algorithm (if possible).

Constructors

NonlinearResults({required List<double> guesses, required double convergence, required double efficiency})
guesses is the scalar succession built by the algorithm, convergence represents the rate of convergence and efficiency is the efficiency of the algorithm expressed as p = convergence 1 / max_steps.
const

Properties

convergence double
The rate of convergence.
final
efficiency double
The efficiency of the algorithm.
final
guesses List<double>
List of values guessed by the algorithm.
final
hashCode int
The hash code for this object.
no setteroverride
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