How to save image of cqt (Constant-Q nonstationary Gabor transform) from KHz to Hz
조회 수: 2 (최근 30일)
이전 댓글 표시
I want to save the image of cqt.but the result is kHz,I want Hz
댓글 수: 0
채택된 답변
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
추가 답변 (0개)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!