Graph smoothing not working properly

1 view (last 30 days)
When trying to smooth the graph at the end, some kind of error occurs in its construction.
%a=(1+rand(1,size(x,2))).*10^-5; % this code makes my values ​​unique
%b=(1+rand(1,size(x,2))).*10^-5;
%x=x+a;
%y=y+b;
yy1 = smooth(x,y,0.1,'loess'); % with a value of 0.1 I like the beginning of the graph
plot(x,y,'b.',x,yy1,'r-') % when using "rloess" same error
Thank you in advance.
  2 Comments
Matt J
Matt J on 31 Mar 2022
What error? You should copy/paste all error messages.
Lev Mihailov
Lev Mihailov on 1 Apr 2022
@Matt J at the end of the file, the red line is not built correctly

Sign in to comment.

Accepted Answer

MJFcoNaN
MJFcoNaN on 3 Apr 2022
"x" is not monotonous, therefore, you should use this kind of form:
yy1 = smooth(y,0.1,'loess');

More Answers (0)

Categories

Find more on 2-D and 3-D Plots in Help Center and File Exchange

Products

Community Treasure Hunt

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

Start Hunting!