Class StickTransform

  • All Implemented Interfaces:
    Serializable, Transformable

    public class StickTransform
    extends BoundedParameterTransform
    A simple bounded transform which makes the parameter stick to the boundaries upon reaching them. For insatnce, when a parameter x attempts to escape its bounds due to a larger increment then allowed, this transform will return it directly to the respective boundary, where it will "stick".
    Author:
    Artem Lunev
    See Also:
    Serialized Form
    • Constructor Detail

      • StickTransform

        public StickTransform​(Segment bounds)
        Only the upper bound of the argument is used.
        Parameters:
        bounds - the bounda.getMaximum() is used in the transforms
    • Method Detail

      • transform

        public double transform​(double a)
        Description copied from interface: Transformable
        Performs the selected transform with value
        Parameters:
        a -
        Returns:
        the results, such that inverse( transform(value) ) = value
      • inverse

        public double inverse​(double t)
        Description copied from interface: Transformable
        Inverses the transform.