THE AUDITORY MODELING TOOLBOX

Applies to version: 0.9.7

View the code

Go to function

DATA_ROENNE2012 - Unitary response

Usage

ur = data_roenne2012()

Description

[ur,fs]=data_roenne2012 returns the unitary response from Roenne (2012) and its sampling frequency, \(fs=30000\) .

Examples:

The first plot shows the unitary response in the time-domain:

[ur,fs]  = data_roenne2012;
plot((0:length(ur)-1)/fs,ur);
xlabel('Time / seconds');
ylabel('Amplitude');
data_roenne2012_1_1.png

The second plot shows the magnitude response of the unitary response, normalized so the highest peak reaches 0-dB:

[ur,fs]  = data_roenne2012;
magresp(ur,fs,90,'fir','1');
data_roenne2012_2_1.png

References:

F. Roenne, J. Harte, C. Elberling, and T. Dau. Modeling auditory evoked brainstem responses to transient stimuli. J. Acoust. Soc. Am., accepted for publication, 2012.