initial commit with 2024 materials
This commit is contained in:
commit
6fdfdbb8b7
66 changed files with 102457 additions and 0 deletions
10
hands_on/local_maxima_part2/local_maxima.py
Normal file
10
hands_on/local_maxima_part2/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