Click or drag to resize

gsl_integration_workspace Class

Workspace for adaptive integration routines.
Inheritance Hierarchy
SystemObject
  Altaxo.Calc.Integrationgsl_integration_workspace

Namespace: Altaxo.Calc.Integration
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3448.0 (4.8.3448.0)
Syntax
C#
public class gsl_integration_workspace

The gsl_integration_workspace type exposes the following members.

Constructors
 NameDescription
Public methodgsl_integration_workspace Create a new workspace with capacity n intervals.
Top
Methods
 NameDescription
Public methodappend_interval Append an interval with its area and error estimate to the workspace list.
Public methodEqualsDetermines whether the specified object is equal to the current object.
(Inherited from Object)
Protected methodFinalizeAllows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object)
Public methodGetHashCodeServes as the default hash function.
(Inherited from Object)
Public methodGetTypeGets the Type of the current instance.
(Inherited from Object)
Public methodincrease_nrmax Increase the nrmax counter searching for an interval that can still be subdivided.
Public methodinitialise Initialize the workspace with the initial integration interval [a,b]. Resets internal counters and sets the first interval.
Public methodlarge_interval Check whether the current interval can still be subdivided further based on the maximum level.
Protected methodMemberwiseCloneCreates a shallow copy of the current Object.
(Inherited from Object)
Public methodreset_nrmax Reset the nrmax counter and set i to the interval index indicated by order[0].
Public methodretrieve Retrieve the interval data for the current index i.
Public methodset_initial_result Store the initial integral result and its estimated absolute error.
Public methodsort_results Sort the results in descending order of error estimates and set the current index accordingly.
Public methodsum_results Sum the integral estimates stored in the workspace.
Public methodToStringReturns a string that represents the current object.
(Inherited from Object)
Public methodupdate Update the workspace by replacing the interval with index i with two subintervals. Calls qpsrt afterwards to maintain ordering of errors.
Top
Fields
 NameDescription
Public fieldalist Array of left endpoints of intervals in the workspace.
Public fieldblist Array of right endpoints of intervals in the workspace.
Public fieldelist Array of error estimates for each interval.
Public fieldi Index of current interval with largest error.
Public fieldlevel Array of subdivision levels for each interval.
Public fieldlimit Maximum number of subintervals allowed in the workspace.
Public fieldmaximum_level Maximum subdivision level reached so far.
Public fieldnrmax Index used in ordering error estimates.
Top
See Also