pyFDN.is_bounding_curve#

pyFDN.is_bounding_curve(x_points, y_points, x_curve, y_curve, bound_type)[source]#

Check if all value points are bounded by the curve. :type x_points: ArrayLike :param x_points: x-coordinates of data points (1D array) :type y_points: ArrayLike :param y_points: y-coordinates of data points (1D array) :type x_curve: ArrayLike :param x_curve: x-coordinates of curve points (1D array) :type y_curve: ArrayLike :param y_curve: y-coordinates of curve points (1D array) :type bound_type: str :param bound_type: ‘upper’ or ‘lower’

Returns:

bool, whether all data points are bounded is_bounded: boolean array, whether each data point is bounded

Return type:

tuple[Any, ndarray]