[PYTHON] Numpy-Index-Suche

Minimaler, maximaler Index

--Verwenden Sie "np.argmin (max)"

import numpy as np
a = np.array([1,2,3,4,4])
np.argmin(a)

>>> 0
np.argmax(a)

>>> 3

Wenn sie sich überschneiden, wird die kleinere übernommen.

Bedingte Suche

--Verwenden Sie np.where (bedingte Anweisung)

import numpy as np
a = np.array([1,2,3,4,4])
print np.where(a>2)

>>>(array([2, 3, 4]),)

Referenz

http://oppython.hatenablog.com/entry/2016/05/31/205746

Recommended Posts

Numpy-Index-Suche
[Python] Suche (NumPy) ABC165C
Numpy-Übung 1
Numpy [Basic]
Django-Suche
numpy Teil 1
NumPy-Grundlagen
Numpy Memorandum _ Matrix
numpy tipps
Über Numpy
NumPy-Achse
Verwenden Sie Numpy
numpy Teil 2
[Python numpy] Geben Sie den Index des Arrays dynamisch an