필터 지우기
필터 지우기

How to save image of cqt (Constant-Q nonstationary Gabor transform) from KHz to Hz

조회 수: 5 (최근 30일)
I want to save the image of cqt.but the result is kHz,I want Hz

채택된 답변

Star Strider
Star Strider 2022년 3월 19일
Try something like this —
load handel
figure
cqt(y,'SamplingFrequency',Fs)
Ax = gca;
ytv = Ax.YTick;
Ax.YTickLabel = compose('%4d',ytv*1E+3);
Ax.YLabel.String = 'Frequency (Hz)';
.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Particle Swarm에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by