view trunk/matlab/bmm/carfac/CARFAC_Init.m @ 532:9b478420cbe2

Added a calculation (last plot) of the group delay. The previous check in fixed a couple of bugs.
author alan.strelzoff
date Sun, 11 Mar 2012 22:45:36 +0000
parents fb60ea429bb8
children 95a11cca4619
line wrap: on
line source
% Copyright 2012, Google, Inc.
% Author: Richard F. Lyon
%
% This Matlab file is part of an implementation of Lyon's cochlear model:
% "Cascade of Asymmetric Resonators with Fast-Acting Compression"
% to supplement Lyon's upcoming book "Human and Machine Hearing"
%
% Licensed under the Apache License, Version 2.0 (the "License");
% you may not use this file except in compliance with the License.
% You may obtain a copy of the License at
%
%     http://www.apache.org/licenses/LICENSE-2.0
%
% Unless required by applicable law or agreed to in writing, software
% distributed under the License is distributed on an "AS IS" BASIS,
% WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
% See the License for the specific language governing permissions and
% limitations under the License.

function CF_struct = CARFAC_Init(CF_struct, n_mics)
% function CF_struct = CARFAC_Init(CF_struct, n_mics)
%
% Initialize state for n_mics channels (default 1).
% This allocates and zeros all the state vector storage in the CF_struct.

% TODO (dicklyon): Review whether storing state in the same struct as
% the design is a good thing, or whether we want another
% level of object.  I like fewer structs and class types.

if nargin < 2
  n_mics = 1;  % monaural
end

% % this is probably what I'd do in the C++ version:
% if CF_struct.n_mics ~= n_mics;
%   % free the state and make new number of channels
%   % make a struct arrray, one element per mic channel, numbered:
%   for k = 1:n_mics
%     CF_struct.state(k)  = struct('mic_number', k);
%   end
% end
% But this code doesn't work because I don't understand struct arrays.

% For now I don't ever free anything if n_mics is reduced;
% so be sure to respect n_mics, not the size of the state struct array.

AGC_time_constants = CF_struct.AGC_params.time_constants;
n_AGC_stages = length(AGC_time_constants);

CF_struct.n_mics = n_mics;
n_ch = CF_struct.n_ch;

% keep all the decimator phase info in mic 1 state only:
CF_struct.AGC_state(1).decim_phase = zeros(n_AGC_stages, 1);  % ints

% This zeroing grows the struct array as needed:
for mic = 1:n_mics
  CF_struct.filter_state(mic).z1_memory = zeros(n_ch, 1);
  CF_struct.filter_state(mic).z2_memory = zeros(n_ch, 1);
  CF_struct.filter_state(mic).zA_memory = zeros(n_ch, 1);  % cubic loop
  CF_struct.filter_state(mic).zB_memory = zeros(n_ch, 1);  % AGC interp
  CF_struct.filter_state(mic).dzB_memory = zeros(n_ch, 1);  % AGC incr
  CF_struct.filter_state(mic).zY_memory = zeros(n_ch, 1);
  CF_struct.filter_state(mic).detect_accum = zeros(n_ch, 1);
  CF_struct.filter_state(mic).g_memory = ...
    CF_struct.filter_coeffs(mic).g0_coeffs;  % initial g for min_zeta
  CF_struct.filter_state(mic).dg_memory = zeros(n_ch, 1);    % g interp
  % AGC loop filters' state:
  CF_struct.AGC_state(mic).AGC_memory = zeros(n_ch, n_AGC_stages);  % HACK init
  CF_struct.AGC_state(mic).input_accum = zeros(n_ch, n_AGC_stages);  % HACK init
  % IHC state:
  if CF_struct.IHC_coeffs.just_hwr
    CF_struct.IHC_state(mic).ihc_accum = zeros(n_ch, 1);
  else
    CF_struct.IHC_state(mic).cap_voltage = ...
      CF_struct.IHC_coeffs.rest_cap * ones(n_ch, 1);
    CF_struct.IHC_state(mic).cap1_voltage = ...
      CF_struct.IHC_coeffs.rest_cap1 * ones(n_ch, 1);
    CF_struct.IHC_state(mic).cap2_voltage = ...
      CF_struct.IHC_coeffs.rest_cap2 * ones(n_ch, 1);
    CF_struct.IHC_state(mic).lpf1_state = ...
      CF_struct.IHC_coeffs.rest_output * zeros(n_ch, 1);
    CF_struct.IHC_state(mic).lpf2_state = ...
      CF_struct.IHC_coeffs.rest_output * zeros(n_ch, 1);
    CF_struct.IHC_state(mic).ihc_accum = zeros(n_ch, 1);
  end
end