How to find the value of "Border" in findpeaks built-in function?
4 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Example using this link
x = linspace(0,1,1000);
Pos = [1 2 3 5 7 8]/10;
Hgt = [4 4 2 2 2 3];
Wdt = [3 8 4 3 4 6]/100;
for n = 1:length(Pos)
Gauss(n,:) = Hgt(n)*exp(-((x - Pos(n))/Wdt(n)).^2);
end
PeakSig = sum(Gauss);
% Plot the graph
plot(x,Gauss,'--',x,PeakSig)
grid
![1.png](https://www.mathworks.com/matlabcentral/answers/uploaded_files/203425/1.png)
findpeaks(PeakSig,x,'Annotate','extents','WidthReference','halfheight')
title('Signal Peak Widths')
![2.png](https://www.mathworks.com/matlabcentral/answers/uploaded_files/203426/2.png)
How can we find the X and Y value of the border?
![2.PNG](https://www.mathworks.com/matlabcentral/answers/uploaded_files/203427/2.png)
Border is built in function in "findpeaks"
2 comentarios
Respuestas (0)
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!