audio signal in spectrogram
이전 댓글 표시
Hello,
How to apply window function for a audio signal in spectrogram and compare it with the one without applying window function ?
채택된 답변
추가 답변 (1개)
UMAIR RASOOL
2020년 8월 1일
0 개 추천
close all
clear all
clc
[y,Fs]=audioread('black_hole.mp3');
windowSize = 256;
windowOverlap = [];
freqRange = 0:Fs;
spectrogram(y(:,1), windowSize, windowOverlap, freqRange, Fs, 'xaxis');
카테고리
도움말 센터 및 File Exchange에서 Time-Frequency Analysis에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!