Package pulse.math
Class MidpointIntegrator
-
- All Implemented Interfaces:
Serializable
,Descriptive
,Reflexive
public abstract class MidpointIntegrator extends FixedIntervalIntegrator
Implements the midpoint integration scheme for the evaluation of definite integrals.- See Also:
- Wiki page, Serialized Form
-
-
Constructor Summary
Constructors Constructor Description MidpointIntegrator(Segment bounds)
MidpointIntegrator(Segment bounds, NumericProperty segments)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description double
integrate()
Performs the integration according to the midpoint scheme.-
Methods inherited from class pulse.math.FixedIntervalIntegrator
getIntegrationSegments, getPrefix, listedKeywords, set, setBounds, setIntegrationSegments, stepSize, toString
-
Methods inherited from class pulse.math.AbstractIntegrator
getBounds, integrand
-
Methods inherited from class pulse.util.PropertyHolder
addListener, areDetailsHidden, data, describe, firePropertyChanged, getDescriptor, getListeners, ignoreSiblings, initListeners, isListedNumericType, isListedParameter, listedTypes, numericData, parameterListChanged, removeListeners, setPrefix, updateProperties, updateProperty
-
Methods inherited from class pulse.util.Accessible
accessibleChildren, genericProperties, genericProperty, numericProperties, numericProperty, property, update, update
-
Methods inherited from class pulse.util.UpwardsNavigable
addHierarchyListener, getHierarchyListeners, getParent, identify, removeHierarchyListener, removeHierarchyListeners, setParent, specificAncestor, tellParent
-
-
-
-
Constructor Detail
-
MidpointIntegrator
public MidpointIntegrator(Segment bounds, NumericProperty segments)
-
MidpointIntegrator
public MidpointIntegrator(Segment bounds)
-
-
Method Detail
-
integrate
public double integrate()
Performs the integration according to the midpoint scheme. This scheme should be used when the function is not well-defined at either of the integration bounds.- Specified by:
integrate
in classAbstractIntegrator
- Returns:
- the value of the integral
-
-