Programmer Guide/SPU Reference/LIMITER: Difference between revisions

From STX Wiki
Jump to navigationJump to search
No edit summary
Line 24: Line 24:
x_i,  & \mbox{if }|x_i| \leqslant LIM \\
x_i,  & \mbox{if }|x_i| \leqslant LIM \\
sign(x_i).f(\frac{|x_i|}{MAX}), & \mbox{otherwise}  
sign(x_i).f(\frac{|x_i|}{MAX}), & \mbox{otherwise}  
\end{cases}
\end{cases}\!
</math>
</math>
The limiter function is selected by the input <var>TYPE</var>.
The limiter function is selected by the input <var>TYPE</var>.

Revision as of 11:29, 9 May 2011

Apply limiter function to a signal.

[SPU LIMITER X TYPE MAX LIM OUT Y Q]

input description data type value type default value
X input signal number, vector variable
TYPE limiter function
(RECTANGLE, ATAN, EXPONENTIAL)
number (int.), string constant 0 (= RECTANGLE)
MAX maximum value; 0 < MAX number constant 1
LIM limiter start value; 0 < LIMMAX number constant 1
output description data type value type comment
Y limited signal same type as A variable
Q overload ratio number variable
Description

This SP-atom applies a non-linear magnitude weighting (= limiter function) to the signal. The limiter function is only applied if the absolute value of the signal magnitude is higher than the specified limiter start magnitude LIM. For the limiter function, the following algorithm is used:

{\displaystyle y_{i}={\begin{cases}x_{i},&{\mbox{if }}|x_{i}|\leqslant LIM\\sign(x_{i}).f({\frac {|x_{i}|}{MAX}}),&{\mbox{otherwise}}\end{cases}}\!}

The limiter function is selected by the input TYPE.

TYPE limiter function f(zi)
0 or RECTANGLE {\displaystyle k\!}
with: {\displaystyle z={\frac {|x_{i}|}{MAX}},k={\frac {LIM}{MAX}}}




LIMITER - amplitude limiter (non-linear)

File:1240.png

with:

x, y input and output signal sample
LIM, MAX limiter start amplitude and maximum signal amplitude
f() limiter function selected by input TYPE

Table: Limiter functions{| |- |The value of TYPE |The limiter function f(z) |- |0 or RECTANGLE |File:1241.png ('cut-off') |- |1 or ATAN |File:1242.png |- |2 or EXPONENTIAL |File:1243.png |}

with:

File:1244.png

The output Q is set to the relative number of processed samples:

Q = number of changed samples / number of processed samples

Usage:

LIMITER X TYPE MAX LIM

Inputs:
X
The signal vector or sample.
TYPE
The type of limiter function (see table above).
MAX
The maximum magnitude (full attenuation).
LIM
The limiter start magnitude. This value must be less than MAX.
Outputs:
Y
The limited signal (the same type as X).
Q

The output Q (overload ratio) is set to the relative number of limited (changed) samples.

{\displaystyle Q={\frac {changedSamples}{processedSamples}}}

See also

<SP-atoms>

Navigation menu

Personal tools