annotate SMALLboxInit.m @ 210:f12a476a4977 luisf_dev

Added help comments to SMALL_two_step_DL.m
author bmailhe
date Wed, 21 Mar 2012 17:25:40 +0000
parents 2882992f9e6e
children a986ee86651e
rev   line source
luis@206 1 function SMALLboxInit(varargin)
luis@206 2 %% SMALLboxInit
luis@206 3 %
luis@206 4 % SMALLbox Initialization
luis@206 5 %
luis@206 6 % Important: If running SMALLBox for the first time,
luis@206 7 % please run SMALLboxSetup instead
luis@206 8
luis@206 9 %
luis@206 10 % Centre for Digital Music, Queen Mary, University of London.
luis@206 11 % This file copyright 2009 Ivan Damnjanovic, Matthew Davies.
luis@206 12 %
luis@206 13 % This program is free software; you can redistribute it and/or
luis@206 14 % modify it under the terms of the GNU General Public License as
luis@206 15 % published by the Free Software Foundation; either version 2 of the
luis@206 16 % License, or (at your option) any later version. See the file
luis@206 17 % COPYING included with this distribution for more information.
luis@206 18 %
luis@206 19 %%
luis@206 20
luis@190 21 global SMALL_path;
luis@198 22 SMALL_path = fileparts(mfilename('fullpath'));
luis@190 23
luis@198 24 addpath(genpath(SMALL_path));
luis@206 25
luis@206 26 end
luis@206 27