Main Content

Expander

Dynamic range expander

  • Expander block

Libraries:
Audio Toolbox / Dynamic Range Control

Description

The Expander block performs dynamic range expansion independently across each input channel. Dynamic range expansion attenuates the volume of quiet sounds below a given threshold. The block uses specified attack, release, and hold times to achieve a smooth applied gain curve.

Ports

Input

expand all

  • Matrix input –– Each column of the input is treated as an independent channel.

  • 1-D vector input –– The input is treated as a single channel.

This port is unnamed unless you specify additional input ports.

Data Types: single | double

Dependencies

To enable this port, select Specify from input port for the Ratio parameter.

Data Types: single | double

Dependencies

To enable this port, select Specify from input port for the Threshold (dB) parameter.

Data Types: single | double

Dependencies

To enable this port, select Specify from input port for the Knee width (dB) parameter.

Data Types: single | double

Dependencies

To enable this port, select Specify from input port for the Attack time (s) parameter.

Data Types: single | double

Dependencies

To enable this port, select Specify from input port for the Release time (s) parameter.

Data Types: single | double

Dependencies

To enable this port, select Specify from input port for the Hold time (s) parameter.

Data Types: single | double

Output

expand all

The Expander block outputs a signal with the same data type as the input signal. The size of the output depends on the size of the input:

  • Matrix input –– The block outputs a matrix the same size and data type as the input signal.

  • 1-D vector input –– The block outputs an N-by-1 matrix (column vector), where N is the number of elements in the 1-D vector.

This port is unnamed until you select the Output gain (dB) parameter.

Data Types: single | double

Dependencies

To enable this port, select the Output gain (dB) parameter.

Data Types: single | double

Parameters

expand all

If a parameter is listed as tunable, then you can change its value during simulation.

Main Tab

Expansion ratio is the input/output ratio for signals that undershoot the operation threshold.

Assuming a hard knee characteristic and a steady-state input such that x[n] dB < Threshold (dB), the expansion ratio is defined as R=(y[n]T)(x[n]T), where

  • R is the expansion ratio.

  • y[n] is the output signal in dB.

  • x[n] is the input signal in dB.

  • T is the threshold in dB.

To specify Ratio from an input port, select Specify from input port for the parameter.

Tunable: Yes

Operation threshold is the level below which gain is applied to the input signal.

To specify Threshold (dB) from an input port, select Specify from input port for the parameter.

Tunable: Yes

For soft knee characteristics, the transition area is defined by the relation

y=x+(1R)×(xTW2)2(2×W)

for the range (2×|xT|)W, where

  • y is the output level in dB.

  • x is the input level in dB.

  • R is the expansion ratio.

  • T is the threshold in dB.

  • W is the knee width in dB.

To specify Knee width (dB) from an input port, select Specify from input port for the parameter.

Tunable: Yes

The plot is updated automatically when parameters of the Expander block change.

Tunable: Yes

Attack time is the time the expander gain takes to rise from 10% to 90% of its final value when the input goes below the threshold. The Attack time (s) parameter smooths the applied gain curve.

To specify Attack time (s) from an input port, select Specify from input port for the parameter.

Tunable: Yes

Release time is the time the expander gain takes to drop from 90% to 10% of its final value when the input goes above the threshold. The Release time (s) parameter smooths the applied gain curve.

To specify Release time (s) from an input port, select Specify from input port for the parameter.

Tunable: Yes

Hold time is the period for which the (negative) gain is held before starting to decrease towards its steady state value when the input level drops below the threshold.

To specify Hold time (s) from an input port, select Specify from input port for the parameter.

Tunable: Yes

When you select this parameter, the block inherits its sample rate from the input signal. When you clear this parameter, specify the sample rate in the Input sample rate (Hz) parameter.

Tunable: No

Tunable: Yes

Dependencies

To enable this parameter, clear the Inherit sample rate from input parameter.

Advanced Tab

When you select this parameter, an additional output port, G, is added to the block. The G port outputs the gain applied on each input channel in dB.

Tunable: No

When you select this parameter, an additional input port SC is added to the block. The SC port enables dynamic range expansion of the input signal x using a separate sidechain signal.

The datatype and (frame) length input to the SC port must be the same as the input to the x port.

The number of channels of the sidechain input must be equal to the number of channels of x or be equal to one.

  • Sidechain channel count is equal to one –– The computed gain, G, based on this channel is applied to all channels of x.

  • Sidechain channel count is equal to channel count of x –– The computed gain, G, for each sidechain channel is applied to the corresponding channel of x.

Tunable: No

  • Interpreted execution –– Simulate model using the MATLAB® interpreter. This option shortens startup time and has a simulation speed comparable to Code generation. In this mode, you can debug the source code of the block.

  • Code generation –– Simulate model using generated C code. The first time you run a simulation, Simulink® generates C code for the block. The C code is reused for subsequent simulations, as long as the model does not change. This option requires additional startup time, but the speed of the subsequent simulations is comparable to Interpreted execution.

Tunable: No

Block Characteristics

Data Types

double | single

Direct Feedthrough

no

Multidimensional Signals

no

Variable-Size Signals

yes

Zero-Crossing Detection

no

Algorithms

The Expander block processes a signal frame by frame and element by element.

  1. The N-point signal, x[n], is converted to decibels:

    xdB[n]=20×log10|x[n]|

  2. xdB[n] passes through the gain computer. The gain computer uses the static characteristic properties of the dynamic range expander to attenuate gain that is below the threshold.

    If you specified a soft knee, the gain computer has the following static characteristic:

    xsc(xdB)={T+(xdBT)×RxdB<(TW2)xdB+(1R)(xdBTW2)22W(TW2)xdB(T+W2)xdBxdB>(T+W2),

    where T is the threshold, R is the expansion ratio, and W is the knee width.

    If you specified a hard knee, the gain computer has the following static characteristic:

    xsc(xdB)={T+(xdBT)×RxdB<TxdBxdBT

  3. The computed gain, gc[n], is calculated as

    gc[n]=xsc[n]xdB[n].

  4. gc[n] is smoothed using specified attack, release, and hold time parameters:

    gs[n]={αAgs[n1]+(1αA)gc[n](CA>TH)&(gc[n]gs[n1])gs[n1]CATHαRgs[n1]+(1αR)gc[n]gc[n]>gs[n1]

    CA is the hold counter for attack. The limit, TH, is determined by the Hold time (s) parameter.

    The attack time coefficient, α A, is calculated as

    αA=exp(log(9)Fs×TA).

    The release time coefficient, α R, is calculated as

    αR=exp(log(9)Fs×TR).

    TA is the attack time period, specified by the Attack time (s) parameter. T R is the release time period, specified by the Release time (s) parameter. Fs is the input sampling rate, specified by the Inherit sample rate from input or Input sample rate (Hz) parameter.

  5. The smoothed gain in dB, gs[n], is translated to a linear domain:

    glin[n]=10(gs[n]20).

  6. The output of the dynamic range expander is given as

    y[n]=x[n]×glin[n].

References

[1] Giannoulis, Dimitrios, Michael Massberg, and Joshua D. Reiss. "Digital Dynamic Range Compressor Design –– A Tutorial And Analysis." Journal of Audio Engineering Society. Vol. 60, Issue 6, 2012, pp. 399–408.

Extended Capabilities

C/C++ Code Generation
Generate C and C++ code using Simulink® Coder™.

Version History

Introduced in R2016a