spectralDecrease
Spectral decrease for audio signals and auditory spectrograms
Syntax
Description
specifies options using one or more name-value arguments.decrease
= spectralDecrease(x
,f
,Name=Value
)
spectralDecrease(___)
with no output arguments plots
the spectral decrease. You can specify an input combination from any of the previous syntaxes.
If the input is in the time domain, the spectral decrease is plotted against time.
If the input is in the frequency domain, the spectral decrease is plotted against frame number.
Examples
Spectral Decrease of Time-Domain Audio
Read in an audio file and calculate the decrease using default parameters.
[audioIn,fs] = audioread("Counting-16-44p1-mono-15secs.wav");
decrease = spectralDecrease(audioIn,fs);
Plot the spectral decrease against time.
spectralDecrease(audioIn,fs)
Spectral Decrease of Frequency-Domain Audio Data
Read in an audio file and then calculate the mel spectrogram using the melSpectrogram
function.
[audioIn,fs] = audioread("Counting-16-44p1-mono-15secs.wav");
[s,cf] = melSpectrogram(audioIn,fs);
Calculate the decrease of the mel spectrogram over time.
decrease = spectralDecrease(s,cf);
Plot the spectral decrease against the frame number.
spectralDecrease(s,cf)
Specify Nondefault Parameters
Read in an audio file.
[audioIn,fs] = audioread("Counting-16-44p1-mono-15secs.wav");
Calculate the decrease of the magnitude spectrum over time. Calculate the decrease for 50 ms Hamming windows of data with 25 ms overlap. Use the range from 62.5 Hz to fs
/2 for the decrease calculation.
decrease = spectralDecrease(audioIn,fs, ... Window=hamming(round(0.05*fs)), ... OverlapLength=round(0.025*fs), ... Range=[62.5,fs/2]);
Plot the spectral decrease.
spectralDecrease(audioIn,fs, ... Window=hamming(round(0.05*fs)), ... OverlapLength=round(0.025*fs), ... Range=[62.5,fs/2])
Calculate Spectral Decrease of Streaming Audio
Create a dsp.AudioFileReader
object to read in audio data frame-by-frame. Create a dsp.SignalSink
to log the spectral decrease calculation.
fileReader = dsp.AudioFileReader('Counting-16-44p1-mono-15secs.wav');
logger = dsp.SignalSink;
In an audio stream loop:
Read in a frame of audio data.
Calculate the spectral decrease for the frame of audio.
Log the spectral decrease for later plotting.
To calculate the spectral decrease for only a given input frame, specify a window with the same number of samples as the input, and set the overlap length to zero. Plot the logged data.
while ~isDone(fileReader) audioIn = fileReader(); decrease = spectralDecrease(audioIn,fileReader.SampleRate, ... 'Window',hamming(size(audioIn,1)), ... 'OverlapLength',0); logger(decrease) end plot(logger.Buffer) ylabel('Decrease')
Use dsp.AsyncBuffer
if
The input to your audio stream loop has a variable samples-per-frame.
The input to your audio stream loop has an inconsistent samples-per-frame with the analysis window of
spectralDecrease
.You want to calculate the spectral decrease for overlapped data.
Create a dsp.AsyncBuffer
object, reset the logger, and release the file reader.
buff = dsp.AsyncBuffer; reset(logger) release(fileReader)
Specify that the spectral decrease is calculated for 50 ms frames with a 25 ms overlap.
fs = fileReader.SampleRate; samplesPerFrame = round(fs*0.05); samplesOverlap = round(fs*0.025); samplesPerHop = samplesPerFrame - samplesOverlap; win = hamming(samplesPerFrame); while ~isDone(fileReader) audioIn = fileReader(); write(buff,audioIn); while buff.NumUnreadSamples >= samplesPerHop audioBuffered = read(buff,samplesPerFrame,samplesOverlap); decrease = spectralDecrease(audioBuffered,fs, ... 'Window',win, ... 'OverlapLength',0); logger(decrease) end end release(fileReader)
Plot the logged data.
plot(logger.Buffer)
ylabel('Decrease')
Input Arguments
x
— Input signal
column vector | matrix | 3-D array
Input signal, specified as a vector, matrix, or 3-D array. How the function
interprets x
depends on the shape of f
.
Data Types: single
| double
f
— Sample rate or frequency vector (Hz)
scalar | vector
Sample rate or frequency vector in Hz, specified as a scalar or vector,
respectively. How the function interprets x
depends on the shape
of f
:
If
f
is a scalar,x
is interpreted as a time-domain signal, andf
is interpreted as the sample rate. In this case,x
must be a real vector or matrix. Ifx
is specified as a matrix, the columns are interpreted as individual channels.If
f
is a vector,x
is interpreted as a frequency-domain signal, andf
is interpreted as the frequencies, in Hz, corresponding to the rows ofx
. In this case,x
must be a real L-by-M-by-N array, where L is the number of spectral values at given frequencies off
, M is the number of individual spectra, and N is the number of channels.The number of rows of
x
, L, must be equal to the number of elements off
.
Data Types: single
| double
Name-Value Arguments
Specify optional pairs of arguments as
Name1=Value1,...,NameN=ValueN
, where Name
is
the argument name and Value
is the corresponding value.
Name-value arguments must appear after other arguments, but the order of the
pairs does not matter.
Before R2021a, use commas to separate each name and value, and enclose
Name
in quotes.
Example: Window=hamming(256)
Note
The following name-value arguments apply if x
is a time-domain
signal. If x
is a frequency-domain signal, name-value arguments are
ignored.
Window
— Window applied in time domain
rectwin(round(f
*0.03))
(default) | vector
f
*0.03))Window applied in the time domain, specified as a real vector. The number of
elements in the vector must be in the range [1,
size(
]. The number of elements in the
vector must also be greater than x
,1)OverlapLength
.
Data Types: single
| double
OverlapLength
— Number of samples overlapped between adjacent windows
round(f
*0.02)
(default) | non-negative scalar
f
*0.02)Number of samples overlapped between adjacent windows, specified as an integer in
the range [0, size(
).Window
,1)
Data Types: single
| double
FFTLength
— Number of bins in DFT
numel(Window
)
(default) | positive scalar integer
Window
)Number of bins used to calculate the DFT of windowed input samples, specified as
a positive scalar integer. If unspecified, FFTLength
defaults to
the number of elements in the Window
.
Data Types: single
| double
Range
— Frequency range (Hz)
[0,f
/2]
(default) | two-element row vector
f
/2]Frequency range in Hz, specified as a two-element row vector of increasing real
values in the range [0, f
/2].
Data Types: single
| double
SpectrumType
— Spectrum type
"magnitude"
(default) | "power"
Spectrum type, specified as "power"
or
"magnitude"
:
"power"
–– The spectral decrease is calculated for the one-sided power spectrum."magnitude"
–– The spectral decrease is calculated for the one-sided magnitude spectrum.
Data Types: char
| string
Output Arguments
decrease
— Spectral decrease
scalar | vector | matrix
Spectral decrease in Hz, returned as a scalar, vector, or matrix. Each row of
decrease
corresponds to the spectral centroid of a window of
x
. Each column of decrease
corresponds to an
independent channel.
Algorithms
The spectral decrease is calculated as described in [1]:
where
sk is the spectral value at bin k.
b1 and b2 are the band edges, in bins, over which to calculate the spectral decrease.
References
[1] Peeters, G. "A Large Set of Audio Features for Sound Description (Similarity and Classification) in the CUIDADO Project." Technical Report; IRCAM: Paris, France, 2004.
Extended Capabilities
C/C++ Code Generation
Generate C and C++ code using MATLAB® Coder™.
GPU Arrays
Accelerate code by running on a graphics processing unit (GPU) using Parallel Computing Toolbox™.
Version History
Introduced in R2019a
MATLAB Command
You clicked a link that corresponds to this MATLAB command:
Run the command by entering it in the MATLAB Command Window. Web browsers do not support MATLAB commands.
Select a Web Site
Choose a web site to get translated content where available and see local events and offers. Based on your location, we recommend that you select: .
You can also select a web site from the following list
How to Get Best Site Performance
Select the China site (in Chinese or English) for best site performance. Other MathWorks country sites are not optimized for visits from your location.
Americas
- América Latina (Español)
- Canada (English)
- United States (English)
Europe
- Belgium (English)
- Denmark (English)
- Deutschland (Deutsch)
- España (Español)
- Finland (English)
- France (Français)
- Ireland (English)
- Italia (Italiano)
- Luxembourg (English)
- Netherlands (English)
- Norway (English)
- Österreich (Deutsch)
- Portugal (English)
- Sweden (English)
- Switzerland
- United Kingdom (English)
Asia Pacific
- Australia (English)
- India (English)
- New Zealand (English)
- 中国
- 日本Japanese (日本語)
- 한국Korean (한국어)