i have signal array X(1:500) , in this array i have positive,negative and float value. i need to find the 1st major difference or 1st highest peak of the signal how can i find the such peak ?
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
i have attached excel file. all the value in that excl file
0 comentarios
Respuestas (1)
madhan ravi
el 24 de Jul. de 2018
Editada: madhan ravi
el 24 de Jul. de 2018
Hi, the following code will give you the first highest peak and the value of it.
[max_X,index]=max(X)
4 comentarios
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!