audio signal in spectrogram
Mostrar comentarios más antiguos
Hello,
How to apply window function for a audio signal in spectrogram and compare it with the one without applying window function ?
1 comentario
Gokul
el 7 de Mzo. de 2013
Respuesta aceptada
Más respuestas (1)
UMAIR RASOOL
el 1 de Ag. de 2020
0 votos
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');
Categorías
Más información sobre Time-Frequency Analysis en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!