audio signal in spectrogram
Show older comments
Hello,
How to apply window function for a audio signal in spectrogram and compare it with the one without applying window function ?
Accepted Answer
More Answers (1)
UMAIR RASOOL
on 1 Aug 2020
0 votes
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');
Categories
Find more on Time-Frequency Analysis in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!