using 'controlchart' and 'findpeaks'
Ältere Kommentare anzeigen
Hello everybody. I’m using the function “controlchart” to analyze something like the data in the picture, however I was wondering how to use the ‘’findpeaks’’ function to identify the peaks in the red circles and also the width of those peaks. Apparently the ‘’findpeaks’’ function doesn’t work properly in this case, it is possible to use both functions in one chart?. Thank you.

1 Kommentar
Mathieu NOE
am 13 Apr. 2021
hello
we could probably better help you if you share a code and data
tx
Akzeptierte Antwort
Weitere Antworten (1)
Fercho_Sala
am 15 Apr. 2021
Bearbeitet: Fercho_Sala
am 15 Apr. 2021
3 Kommentare
Star Strider
am 15 Apr. 2021
I was thinking of something like this —
ax9=subplot(1,2,1);
% load parts;
st2 = controlchart(pws1,y,'Parent',ax9);
ax9.YGrid = 'on';
ax9.XGrid = 'on';
ax9.Children(1).Color = 'w';
ax9.Children(2).Color = 'w';
Kids = ax9.Children(4);
xcc = Kids.XData;
ycc = Kids.YData;
[pks,locs] = findpeaks(ycc, 'MinPeakProminence',1);
figure(9)
plot(xcc, ycc)
hold on
plot(xcc(locs), ycc(locs), '^r')
hold off
grid
xlim([min(xcc) max(xcc)])
ylim([min(ylim) max(ylim)+4])
title('Points Plotted On Control Chart')
xlabel('X Vector')
ylabel('Y Vector')
legend('Points','Peaks', 'Location','best')
text(xcc(locs), ycc(locs), compose('(%3d, %.2f) \\rightarrow ', [xcc(locs); pks].'), 'Horiz','right', 'Vert','middle', 'Rotation',-45)
producing this plot —

Experiment to get different results. (I had to use return after that code to get it to plot correctly, since it does not automatically open a new figure window, for some reason.)
Fercho_Sala
am 15 Apr. 2021
Star Strider
am 15 Apr. 2021
As always, my pleasure!
I definitely agree!
Kategorien
Mehr zu Statistics and Linear Algebra finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!