Class NewtonCotesQuadrature

    • Constructor Detail

      • NewtonCotesQuadrature

        public NewtonCotesQuadrature()
        Constructs a default NewtonCotesQuadrature with integration bounds spanning from 0 to 1.
      • NewtonCotesQuadrature

        public NewtonCotesQuadrature​(Segment bounds)
        Constructs a default NewtonCotesQuadrature whose integration bounds are specified by the argument.
        Parameters:
        bounds - the integration bounds
      • NewtonCotesQuadrature

        public NewtonCotesQuadrature​(Segment bounds,
                                     NumericProperty segments)
        Constructs a custom NewtonCotesQuadrature with specified integration bounds and number of integration segments. The underlying integration scheme by default is a SimpsonIntegrator.
        Parameters:
        bounds - the integration bounds
        segments - the number of integration segments. The higher this number, the higher is the accuracy.
        See Also:
        SimpsonIntegrator
    • Method Detail

      • integrate

        public double integrate()
        Uses the Newton-Cotes integrator (by default, the Simpson's rule) to evaluate the composition product.
        Specified by:
        integrate in class AbstractIntegrator
        Returns:
        the value of the integral
      • getIntegrator

        public FixedIntervalIntegrator getIntegrator()
        This will retrieve the Newton-Cotes integrator, which by default is the Simpson integrator.
        Returns:
        the integrator
      • set

        public void set​(NumericPropertyKeyword type,
                        NumericProperty property)
        Description copied from class: Accessible

        An abstract method, which must be overriden to gain access over setting the values of all relevant (selected by the programmer) NumericProperties in subclasses of Accessible. Typically this involves a switch statement that goes through the different options for the type and invokes different set(...) methods to update the matching NumericProperty with property.

        Specified by:
        set in class Accessible
        Parameters:
        type - the type, which must be equal by definition to property.getType().
        property - the property, which contains new information.
      • listedKeywords

        public Set<NumericPropertyKeyword> listedKeywords()
        Description copied from class: PropertyHolder

        By default, this will search the children of this PropertyHolder to collect the types of their listed numeric parameters recursively.

        Overrides:
        listedKeywords in class PropertyHolder
        Returns:
        a set of NumericPropertyKeyword instances, which have been explicitly marked as a listed parameter for this PropertyHolder.
      • ignoreSiblings

        public boolean ignoreSiblings()
        Description copied from class: PropertyHolder
        Should Accessibles that belong to this PropertyHolder be ignored when this PropertyHolder is displayed in a table?
        Overrides:
        ignoreSiblings in class PropertyHolder
        Returns:
        false by default
        See Also:
        PropertyHolderTable