view aim-mat/modules/usermodule/sst/parameters.m @ 0:74dedb26614d

Initial checkin of AIM-MAT version 1.5 (6.4.2011).
author tomwalters
date Fri, 20 May 2011 12:32:31 +0100
parents
children 20ada0af3d7d
line wrap: on
line source
%%%%%%%%%%%%%%%%%%%%%
% usermodule sst %
%%%%%%%%%%%%%%%%%%%%%

% hidden parameters
sst.generatingfunction = 'gen_sst';
sst.displayname = 'Size-Shape Transform';
% sst.displayfunction = 'displaysst';
sst.revision = '$Revision: 1.2 $';

% Sets the frames, the sst image is calculated for.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% If do_all_frames = 1 
% all frames of the auditory image are transformed to a sst image
% If do_all_frames = 0 only the frames specified in 
% framerange = [start_frame end_frame] are transformed
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
sst.do_all_frames = 1;
sst.framerange = [0 0];

% Sets the Range for the Auditory image
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Calculation of the sst image for the points
% audiorange = [start_point end_point]
% if do_all_image = 1: start_point = 1, end_point = last point in the ai
% flipimage = 1 flips the auditory image (for ti1992)
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
sst.do_all_image = 1;
sst.audiorange = [1 200];
sst.flipimage = 0;

% Sets the variables h and c
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
sst.c_2pi = [0:0.05:30];
sst.TFval = [0:0.05:16]; 

% TCW AIM2006
% These should be the same as the filterbank settings
% (this could be implemented better and will be in future versions, where
% these will not be required).
sst.lowest_frequency=100;
sst.highest_frequency=6000;