You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello! In Julia, docstring signatures wrap arguments in square brackets to denote that the arguments are optional (either positional or keyword; see the Julia docs here), but that is not a valid syntax to call the function . If you wish to call findmaxima with a different window size, you should use eg:
If I have a vector
v
, and want to find all peaks so that it is the highest value in the interval[i-w:i+w]
, how do I do it? The docs saysbut I really do not understand what syntax to use, e.g.
does not work. I can do
but then I have
w=1
, which I not necessarily want.The text was updated successfully, but these errors were encountered: