Class ExponentialReliabilityFunction

    • Field Summary

      Fields 
      Modifier and Type Field Description
      protected double alpha
      The parameter alpha corresponds to the failure-rate lambda.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      double getAlpha()
      The alpha parameter.
      double getY​(double x)
      Returns the y value for y = f(x).
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • Methods inherited from interface org.jreliability.function.Function

        getY
    • Field Detail

      • alpha

        protected final double alpha
        The parameter alpha corresponds to the failure-rate lambda.
    • Constructor Detail

      • ExponentialReliabilityFunction

        public ExponentialReliabilityFunction​(double alpha)
        Constructs an ExponentialReliabilityFunction with a given alpha.
        Parameters:
        alpha - the alpha value
    • Method Detail

      • getY

        public double getY​(double x)
        Description copied from interface: Function
        Returns the y value for y = f(x).
        Specified by:
        getY in interface Function
        Parameters:
        x - the x value
        Returns:
        the y for y = f(x)
      • getAlpha

        public double getAlpha()
        The alpha parameter.
        Returns:
        the alpha value