필터 지우기
필터 지우기

How to omit pictorial presentation of Scalogram?

조회 수: 1 (최근 30일)
Hamed Majidiyan
Hamed Majidiyan 2022년 5월 24일
댓글: Image Analyst 2023년 9월 21일
Dear all,
I would appreciate if anybody can give me a hand regarding the following issue. I have written a function to derive scalogram for every time steps of data, however it keeps showing every scalogram figure in a loop and I want to get rid of figure presentation. The following is my code, and I would be grateful if you tell me how to fix it to close the scalogram windows.
function A=CWTPIC(B)
global nsize
Fs = 50;
fb = cwtfilterbank('SignalLength',nsize,...
'SamplingFrequency',Fs,...
'VoicesPerOctave',12);
sig = B;
[cfs,frq] = wt(fb,sig);
t = (0:nsize-1)/Fs;
A=figure;pcolor(t,frq,abs(cfs));
set(gca,'yscale','log');
shading interp;axis off;
iptsetpref('ImshowBorder','tight');
end

답변 (1개)

Sarthak
Sarthak 2023년 9월 15일
Hi Hamed,
I understand you want to close the plot generated after every loop iteration.
You can achieve this by making use of MATLAB's figure handles and closing figures as needed within your loop.
You can refer to the documentation of “close” and can make use of it in your code.
Hope this solves your query.
  댓글 수: 2
Hamed
Hamed 2023년 9월 20일
Thanks so much it worked.
Image Analyst
Image Analyst 2023년 9월 21일
If this Answer solves your original question, then could you please click the "Accept this answer" link to award the answerer with "reputation points" for their efforts in helping you? They'd appreciate it. Thanks in advance. 🙂 Note: you can only accept one answer (so pick the best one) but you can click the "Vote" icon for as many Answers as you want. Voting for an answer will also award reputation points.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Filter Banks에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by