find X of corresponding local minima
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Sagar Dhage
el 8 de Jul. de 2014
Comentada: Sagar Dhage
el 8 de Jul. de 2014
I have Fx values (ie Y) and corresponding T values (X). To findout the local minima, i have used following prog. [Maxima,MaxIdx] = findpeaks(Fx); FxInv = 1.01*max(Fx) - Fx; [c,MinIdx] = findpeaks(FxInv); Minima = Fx(MinIdx); a= Minima(Minima >100); % further find out values of peak of Fx more than 100.
How I can find T values(X), corresponding to a? i tried b=T(a) but it doesn't work
0 comentarios
Respuesta aceptada
Jos (10584)
el 8 de Jul. de 2014
Finding minima of a signal X is the same as finding the maxima of the signal -X
Más respuestas (1)
Azzi Abdelmalek
el 8 de Jul. de 2014
You can use
[a,idx]=findpeaks(Fx,'MINPEAKHEIGHT',100)
b=T(idx)
3 comentarios
Azzi Abdelmalek
el 8 de Jul. de 2014
[a,idx]=findpeaks(-Fx,'MINPEAKHEIGHT',100)
b=T(idx)
Ver también
Categorías
Más información sobre Database Toolbox en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!