How to save multiple vector signals in one variable using wavelet Denoising?
조회 수: 2 (최근 30일)
이전 댓글 표시
for i = 1:60;
x = y(i,:) ;
F = wden(x,'rigrsure','s','mln',5,'db5');
end
%It only save the last filterd signal in the variable (F) and I need it to save all of the filterd signals.
댓글 수: 0
채택된 답변
KALYAN ACHARJYA
2022년 9월 19일
F data can be store in cell array.
F=cell(1,60);
for i = 1:60;
x = y(i,:) ;
F{i}= wden(x,'rigrsure','s','mln',5,'db5');
end
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 AI for Signals and Images에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!