Dot and Brace indexing is not supported for variables of this type in the Lifting wavelet transform artifact removal method .How can I solve this problem ?
이전 댓글 표시
% Plot the approximation coefficients at each level
for i = 1:level
subplot(level+1, 1, i+1);
plot(ca{i});
title(['Approximation Coefficients at Level ' num2str(i)]);
end
% Plot the detail coefficients at each level
for i = 1:level
figure;
subplot(level, 1, i);
plot(cd{i});
title(['Detail Coefficients at Level ' num2str(i)]);
end
댓글 수: 8
Walter Roberson
2023년 12월 2일
Time to use the debugger to examine what class(ca) and class(cd) are.
Walter Roberson
2023년 12월 2일
dbstop if error
Run until the code stops. When it does, show us which line the problem is occuring on, and show us class() of every variable mentioned on that line.
Komal
2023년 12월 2일
Walter Roberson
2023년 12월 2일
Okay, and when that code stopped, what showed up when you did
whos ca
Komal
2023년 12월 3일
Walter Roberson
2023년 12월 4일
Sorry, I do not know anything about CSP method.
Komal
2023년 12월 4일
이동: Walter Roberson
2023년 12월 4일
답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 EEG/MEG/ECoG에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!