cupyx.scipy.signal.unique_roots#
- cupyx.scipy.signal.unique_roots(p, tol=0.001, rtype='min')[source]#
Determine unique roots and their multiplicities from a list of roots.
- Parameters
p (array_like) – The list of roots.
tol (float, optional) – The tolerance for two roots to be considered equal in terms of the distance between them. Default is 1e-3. Refer to Notes about the details on roots grouping.
rtype ({'max', 'maximum', 'min', 'minimum', 'avg', 'mean'}, optional) –
How to determine the returned root if multiple roots are within tol of each other.
’max’, ‘maximum’: pick the maximum of those roots
’min’, ‘minimum’: pick the minimum of those roots
’avg’, ‘mean’: take the average of those roots
When finding minimum or maximum among complex roots they are compared first by the real part and then by the imaginary part.
- Returns
unique (ndarray) – The list of unique roots.
multiplicity (ndarray) – The multiplicity of each root.
See also
Notes
If we have 3 roots
a
,b
andc
, such thata
is close tob
andb
is close toc
(distance is less than tol), then it doesn’t necessarily mean thata
is close toc
. It means that roots grouping is not unique. In this function we use “greedy” grouping going through the roots in the order they are given in the input p.This utility function is not specific to roots but can be used for any sequence of values for which uniqueness and multiplicity has to be determined. For a more general routine, see numpy.unique.