Interface MathTransform1D

    • Method Detail

      • transform

        double transform​(double value)
                  throws TransformException
        Transforms the specified value.
        Parameters:
        value - The value to transform.
        Returns:
        the transformed value.
        Throws:
        TransformException - if the value can't be transformed.
      • derivative

        double derivative​(double value)
                   throws TransformException
        Gets the derivative of this function at a value. The derivative is the 1×1 matrix of the non-translating portion of the approximate affine map at the value.
        Parameters:
        value - The value where to evaluate the derivative.
        Returns:
        The derivative at the specified point.
        Throws:
        TransformException - if the derivative can't be evaluated at the specified point.