How to outline a curve

12 次查看(过去 30 天)
dj
dj 2014-10-12
评论: dj 2014-10-13
Hello.
If I'm trying to plot variables x and y, and the y values vary so much that the curve looks like the following: http://i.stack.imgur.com/4uiNT.png
The only difference is that mine is a single curve of data with a lot of noise. Is there a way I could just plot the upper and the lower curves so I could just look at the boundaries? Do I have to use the findpeak command?
Thank you for your time!
  2 个评论
pietro
pietro 2014-10-12
How could you make that plot from the boundary array?
dj
dj 2014-10-13
It's just an image that looks like my plot. I just have a really noisy data ):

请先登录,再进行评论。

采纳的回答

Mohammad Abouali
Mohammad Abouali 2014-10-12
编辑:Mohammad Abouali 2014-10-12
  3 个评论
Mohammad Abouali
Mohammad Abouali 2014-10-12
编辑:Mohammad Abouali 2014-10-12
There is no two sets of data. In this graph there is only 1 set, i.e. the blue line. Once you run the HANTS algorithm you have three options, Lo (which gives you the red line) Hi (which gives you the black line), or none which gives you the green line.
You might need to play a bit with the sampling and frequency numbers to get a proper fit.
This function is generally for smoothing the data set and also removing outliers. Of course it gives the main frequency in your data set and you can use it for harmonic analysis.
dj
dj 2014-10-12
I'll look more into this and see if I can figure it out. Thank you for your help!

请先登录,再进行评论。

更多回答(1 个)

John D'Errico
John D'Errico 2014-10-12
I suppose you could use my SLM tools . It has an option to fit an envelope curve, so you could first fit the infimum curve, then the supremum curve to get lower and upper bounds from a pair of calls.
You might want other options in the total prescription, but a start might be...
LBcurve = slmengine(x,y,'envelope','inf');
UBcurve = slmengine(x,y,'envelope','sup');
  1 个评论
dj
dj 2014-10-12
编辑:dj 2014-10-12
Hi, thank you for the feedback!
I've tried using your program on two different computers, and it's giving me an error of the following:
Error using diag Out of memory. Type HELP MEMORY for your options.
Error in slmengine>slmengine_cubic (line 2316) rs = diag(1./sum(abs(Mineq),2));
Error in slmengine (line 255) slm = slmengine_cubic(x,yhat,prescriptionhat);
Could this be because the data is too large? It consists of over 550000 set of points... I'm really new to Matlab, so any help would be appreciated (:

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Interpolation 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by