Function lsqlin smooth results

조회 수: 1 (최근 30일)
Tobias Grempels
Tobias Grempels 2022년 11월 7일
편집: Matt J 2022년 11월 10일
Hi, I used lsqlin to create a linear model. The results are like this:
There are hard peaks and i want to smoot them. In first try i used A and b lsqlin(C,d,A,b) to limit the gradients. The results are like these
Have anyone an idea how to round the spikes?
Thank you very much!

채택된 답변

Matt J
Matt J 2022년 11월 10일
편집: Matt J 2022년 11월 10일
You could add smoothing penalties on first differences to your lsqlin data. Assuming your signal is of length n, this would look like,
D=beta*diff(eye(n)); %differencing operator, in matrix form, with penatly weight beta
z=zeros(n-1,1);
C=[C;D];
d=[d;z];
signal = lsqlin(C,d,A,b);

추가 답변 (1개)

Youssef Noureddine
Youssef Noureddine 2022년 11월 10일
Hi Tobias,
I have 2 primary suggestions that would help you smooth this data,
  1. I would try using the 'smooth' function and selecting low span numbers and varying the smoothing method to and select the pair that produce the most ideal result.
https://www.mathworks.com/help/curvefit/smooth.html
  1. If that doesn't work, you can use the interp1 function to interpolate points between each sample to artifically smoothen the data. You can select the interpolation method to things such as 'cubic' or 'spline' here (although linear might work depending on if your sampling frequency is high enough). I would first start by interpolating mid way points to see if that is enough. If it is still rough, I would find every quarter jump and keep shrinking the jump size until your data is smooth enough.
https://www.mathworks.com/help/matlab/ref/interp1.html
Sincerely,
Youssef

카테고리

Help CenterFile Exchange에서 Smoothing and Denoising에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by