How to smooth a curve with movmean with consideration of the start and end of an array?
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Hello.
I am trying to smooth out a curve with movmean.
My current code looks like this:
Start_i_len = 8;
smooth_offset = cell(Start_i_len, 1);
for i = 1:1:Start_i_len
smooth_offset{i} = movmean(Offset_itpl_mean{i}, 301);
end
The cell array contains 8 cells, with each consisting of 8192 values. What I want to do is, as it samples 301 values, I want it to connect the beginning and the end of the array (If that makes sense). So that when it smoothes out the values at the nearing the end of the array, it does so with consideration of the values at the start of the array and vice versa. Any ideas on how to do it?
0 Kommentare
Antworten (1)
Matt J
am 16 Mär. 2022
Bearbeitet: Matt J
am 16 Mär. 2022
k=ones(1,301); k(8192)=0;
for i = 1:1:8
tmp=fwd.Offset_itpl_mean{i}(:).';
tmp=ifft(fft(tmp).*fft(k),'symmetric');
fwd.smooth_offset{i} = tmp;
end
4 Kommentare
Siehe auch
Kategorien
Mehr zu Spline Postprocessing finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!