How to smoothen the signal and make a good envelope
조회 수: 3 (최근 30일)
이전 댓글 표시
I have a velocity and time data.I would like to smoothen the signal as the hilbert of the signal is very dense ? How to do it
filenames= ["p1"]; % 0 degrees
for k=1:numel(filenames)
s(k)=load (filenames{k});
signal(k,1:length(s(k).ans))=s(k).ans;
end
load('t.mat')
figure;
plot(t,(signal(k,:)),t,envelope(signal(k,:)),time4(k),a6(k),'ro');
hold on
grid on;xlim([0 8E-4])
ylim([-inf inf])
댓글 수: 2
채택된 답변
Cris LaPierre
2020년 3월 15일
You can try doing this interactievly using the new Smooth Data task. You can test out a variety of settings to see what works with your data. See here for more info.
댓글 수: 0
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Get Started with MATLAB에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!