I have attached here the data, which was getting noise at output.
Info
This question is closed. Reopen it to edit or answer.
Show older comments
please can anyone help me seriously, i need to submit my project... here i have a problem that, from those values i am getting the waveform as like that, but i dont need like a noise, i need a line which was any shape... please help me friends.
2 Comments
nani kalyan
on 20 Apr 2015
nani kalyan
on 20 Apr 2015
Edited: Image Analyst
on 21 Apr 2015
Answers (1)
Image Analyst
on 21 Apr 2015
0 votes
Which of the 11 columns was the "x" and which was "y"? How did you plot them? Maybe you should use scatter() instead.
11 Comments
nani kalyan
on 21 Apr 2015
Image Analyst
on 21 Apr 2015
How about
[num, txt, raw] = xlsread(filename);
x = num(:, 7);
y = num(:, 11);
scatter(x, y);
nani kalyan
on 21 Apr 2015
Image Analyst
on 21 Apr 2015
This is what I get

It looks turned with respect to yours and there seems to be two main clusters. What would you like the curve to look like?
nani kalyan
on 21 Apr 2015
Image Analyst
on 21 Apr 2015
Again, what would you like the curve to look like? Pretend I'm really dumb and I don't know what your "perfect values" are. Show me.
nani kalyan
on 22 Apr 2015
Image Analyst
on 22 Apr 2015
How are we supposed to know that the point at (0.99, 10,500) is noise but the one at (1.01, 5000) is not noise? Do you have some reference curve so we can identify outliers from it? Can we use the 4 lines you gave as the reference curve?
nani kalyan
on 22 Apr 2015
Image Analyst
on 22 Apr 2015
At the start, all you have is a collection of x,y coordinates. So again "How are we supposed to know that the point at (0.99, 10,500) is noise but the one at (1.01, 5000) is not noise?" If I don't have a reference curve, such as the one you posted (which is supposed to be the answer or noise-free solution), in advance, then how can I tell which are noise and which are good data???
nani kalyan
on 23 Apr 2015
This question is closed.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!