audio signal in spectrogram
Mostra commenti meno recenti
Hello,
How to apply window function for a audio signal in spectrogram and compare it with the one without applying window function ?
1 Commento
Gokul
il 7 Mar 2013
Risposta accettata
Più risposte (1)
UMAIR RASOOL
il 1 Ago 2020
0 voti
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');
Categorie
Scopri di più su Time-Frequency Analysis in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!