Skip to content

Commit 801640c

Browse files
committed
Add ref and comment for fractional delay default
1 parent 3ddb55e commit 801640c

File tree

1 file changed

+15
-4
lines changed

1 file changed

+15
-4
lines changed

SFS_config.m

Lines changed: 15 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -99,10 +99,17 @@
9999
%% ===== Delayline =======================================================
100100
% Delaying of time signals. This can be critical as very often the wanted delays
101101
% are given as fractions of samples. This configuration section handles how
102-
% those delays should be handled. As the default setting, integer only delays
103-
% are used by rounding to the next larger integer delay.
104-
% Beside choosing the actual delayline filter, the signal can also be resampled
105-
% before delaying.
102+
% those delays should be handled. Beside choosing the actual delayline filter,
103+
% the signal can also be resampled before delaying. As the default setting,
104+
% integer only delays are used by rounding to the next larger integer delay.
105+
% If you want to use a fractional delayline, a setting with a high accuracy is:
106+
% conf.delayline.resampling = 'pm';
107+
% conf.delayline.resamplingfactor = 8;
108+
% conf.delayline.resamplingorder = 64;
109+
% conf.delayline.filter = 'lagrange';
110+
% conf.delayline.filterorder = 9;
111+
% Note, that the necessary interpolation accuracy highly depends on the
112+
% actual use case and parametrisation, compare Winter, Spors (2016).
106113
%
107114
% Delayline filter
108115
% 'integer' - round to nearest integer delay (default)
@@ -506,3 +513,7 @@
506513
%
507514
% Wierstorf (2014) - "Perceptual Assessment of Sound Field Synthesis",
508515
% TU Berlin, https://doi.org/10.14279/depositonce-4310
516+
%
517+
% Winter, Spors (2016) - "On fractional delay interpolation for local wave
518+
% field synthesis", 24th European Signal Processing Conference (EUSIPCO),
519+
% pp. 2415-2419, https://doi.org/10.1109/EUSIPCO.2016.7760682

0 commit comments

Comments
 (0)