Package pulse.math

Class AbstractIntegrator

    • Constructor Detail

      • AbstractIntegrator

        public AbstractIntegrator​(Segment bounds)
        Creates an AbstractIntegrator with the specified integration bounds.
        Parameters:
        bounds - the integration bounds.
    • Method Detail

      • integrate

        public abstract double integrate()
        Calculates the definite integral within the specified integration bounds.
        Returns:
        the value of the integral
      • integrand

        public abstract double integrand​(double... vars)
        Calculates the integrand function.
        Parameters:
        vars - one or more variables
        Returns:
        the value of the integrand at the specified variable values.
      • getBounds

        public Segment getBounds()
        Retrieves the integration bounds
        Returns:
        the integration bounds.
      • setBounds

        public void setBounds​(Segment bounds)
        Simply sets the integration bounds to bounds
        Parameters:
        bounds - the new integration bounds.