forked from sgrieve/PoolTable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIndexer.py
37 lines (27 loc) · 1.05 KB
/
Indexer.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# -*- coding: utf-8 -*-
"""
Created on Sun Jul 12 21:33:56 2015
@author: Stuart Grieve
"""
def get_index_of_min(Data_List):
"""
Return as list of the indexes of the minmum values in a 1D array of data
SWDG May 2015
"""
import numpy as np
#make sure data is in a standard list, not a numpy array
if (type(Data_List).__module__ == np.__name__):
Data_List = list(Data_List)
#return a list of the indexes of the minimum values. Important if there is >1 minimum
return [i for i,x in enumerate(Data_List) if x == min(Data_List)]
def get_index_of_max(Data_List):
"""
Return as list of the indexes of the maximum values in a 1D array of data
SWDG May 2015
"""
import numpy as np
#make sure data is in a standard list, not a numpy array
if (type(Data_List).__module__ == np.__name__):
Data_List = list(Data_List)
#return a list of the indexes of the max values. Important if there is >1 maximum
return [i for i,x in enumerate(Data_List) if x == max(Data_List)]