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!