I want to plot spectogram for my audio signal. What steps i have to follow for that.

2 views (last 30 days)
(s, fs) =audioread('a01.wav')

Answers (1)

Star Strider
Star Strider on 14 Feb 2020
Choose one column (channel) from ‘s’, then call the spectrogram function.
Example —
spectrogram(s(:,1)) % Spectrogram Of Left (Or Only) Channel Of ‘s’ Using Default Parameters
Experiment with the options in spectrogram to get different results.

Categories

Find more on Audio I/O and Waveform Generation in Help Center and File Exchange

Products


Release

R2019b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!