-
Notifications
You must be signed in to change notification settings - Fork 9
/
utilities.py
103 lines (83 loc) · 2.41 KB
/
utilities.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
import sys, os, numpy
def isfloat(x):
"""
Check if argument is float
"""
try:
a = float(x)
except ValueError:
return False
else:
return True
def isint(x):
"""
Check if argument is int
"""
try:
a = float(x)
b = int(a)
except ValueError:
return False
else:
return a == b
def isNum(x):
"""
Check if string argument is numerical
"""
return isfloat(x) or isint(x)
def peakdet(v, delta, x = None):
"""
Converted from MATLAB script at http://billauer.co.il/peakdet.html
Returns two arrays
function [maxtab, mintab]=peakdet(v, delta, x)
%PEAKDET Detect peaks in a vector
% [MAXTAB, MINTAB] = PEAKDET(V, DELTA) finds the local
% maxima and minima ("peaks") in the vector V.
% MAXTAB and MINTAB consists of two columns. Column 1
% contains indices in V, and column 2 the found values.
%
% With [MAXTAB, MINTAB] = PEAKDET(V, DELTA, X) the indices
% in MAXTAB and MINTAB are replaced with the corresponding
% X-values.
%
% A point is considered a maximum peak if it has the maximal
% value, and was preceded (to the left) by a value lower by
% DELTA.
% Eli Billauer, 3.4.05
% This function is released to the public domain; Any use is allowed.
"""
maxtab = []
mintab = []
if x is None:
x = numpy.arange(len(v))
v = numpy.asarray(v)
if len(v) != len(x):
sys.exit('Input vectors v and x must have same length')
if not numpy.isscalar(delta):
sys.exit('Input argument delta must be a scalar')
if delta <= 0:
sys.exit('Input argument delta must be positive')
mn, mx = numpy.Inf, -numpy.Inf
mnpos, mxpos = numpy.NaN, numpy.NaN
lookformax = True
for i in numpy.arange(len(v)):
this = v[i]
if this > mx:
mx = this
mxpos = x[i]
if this < mn:
mn = this
mnpos = x[i]
if lookformax:
if this < mx-delta:
maxtab.append(mxpos)
mn = this
mnpos = x[i]
lookformax = False
else:
if this > mn+delta:
mintab.append(mnpos)
mx = this
mxpos = x[i]
lookformax = True
return numpy.array(maxtab), numpy.array(mintab)