Testing Class Material
This commit is contained in:
commit
05b1f6cdd5
85 changed files with 102796 additions and 0 deletions
10
hands_on/local_maxima/local_maxima.py
Normal file
10
hands_on/local_maxima/local_maxima.py
Normal file
|
@ -0,0 +1,10 @@
|
|||
def find_maxima(x):
|
||||
"""Find local maxima of x.
|
||||
|
||||
Input arguments:
|
||||
x -- 1D list of real numbers
|
||||
|
||||
Output:
|
||||
idx -- list of indices of the local maxima in x
|
||||
"""
|
||||
return []
|
Loading…
Add table
Add a link
Reference in a new issue