audio signal in spectrogram
Afficher commentaires plus anciens
Hello,
How to apply window function for a audio signal in spectrogram and compare it with the one without applying window function ?
1 commentaire
Gokul
le 7 Mar 2013
Réponse acceptée
Plus de réponses (1)
UMAIR RASOOL
le 1 Août 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');
Catégories
En savoir plus sur Time-Frequency Analysis dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!