jax.numpy.ptp

Contents

jax.numpy.ptp#

jax.numpy.ptp(a, axis=None, out=None, keepdims=False)[source]#

Range of values (maximum - minimum) along an axis.

LAX-backend implementation of numpy.ptp().

Original docstring below.

The name of the function comes from the acronym for ‘peak to peak’.

Warning

ptp preserves the data type of the array. This means the return value for an input of signed integers with n bits (e.g. np.int8, np.int16, etc) is also a signed integer with n bits. In that case, peak-to-peak values greater than 2**(n-1)-1 will be returned as negative values. An example with a work-around is shown below.

Parameters:
  • a (array_like) – Input values.

  • axis (None or int or tuple of ints, optional) – Axis along which to find the peaks. By default, flatten the array. axis may be negative, in which case it counts from the last to the first axis.

  • keepdims (bool, optional) –

    If this is set to True, the axes which are reduced are left in the result as dimensions with size one. With this option, the result will broadcast correctly against the input array.

    If the default value is passed, then keepdims will not be passed through to the ptp method of sub-classes of ndarray, however any non-default value will be. If the sub-class’ method does not implement keepdims any exceptions will be raised.

  • out (None)

Returns:

ptp – The range of a given array - scalar if array is one-dimensional or a new array holding the result along the given axis

Return type:

ndarray or scalar