Filter löschen
Filter löschen

How to graph the outline of a curve

3 Ansichten (letzte 30 Tage)
dj
dj am 18 Okt. 2014
Kommentiert: Mohammad Abouali am 20 Okt. 2014
Hello.
I'm trying to plot (x,T) and want to just depict the upper limit curve. I tried to use other Matlab programs others have posted and the findpeaks equation, but I'm not getting much luck.
I want to plot this curve instead of filtering the data and distorting it in a way. Could anyone help me out please? Thank you for your time!

Akzeptierte Antwort

Mohammad Abouali
Mohammad Abouali am 19 Okt. 2014
How does this work for you?
load Example
[pks,locs]=findpeaks(T,x,'MinPeakDistance',3);
plot(x,T);
hold on
plot(locs,pks,'r','LineWidth',3)
The redline is the upper bound.
  5 Kommentare
dj
dj am 20 Okt. 2014
Wow, typing x in front of (locs) makes THIS much difference? This is so weird. Yes, I do have R2013a version. Thank you, everyone. Sorry about the late feedback.
Mohammad Abouali
Mohammad Abouali am 20 Okt. 2014
I am guessing the x was not supported in the former version of MATLAB. Not sure but I think even R2014a didn't support it.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by