annotate SMALLboxInit.m @ 216:a986ee86651e luisf_dev

Calls SMALLboxInit in the beginning of both solve and learn, in order not to lose the SMALL_path variable.
author luisf <luis.figueira@eecs.qmul.ac.uk>
date Thu, 22 Mar 2012 11:41:04 +0000
parents 2882992f9e6e
children
rev   line source
luis@206 1 %% SMALLboxInit
luis@206 2 %
luis@206 3 % SMALLbox Initialization
luis@206 4 %
luis@206 5 % Important: If running SMALLBox for the first time,
luis@206 6 % please run SMALLboxSetup instead
luis@206 7
luis@206 8 %
luis@206 9 % Centre for Digital Music, Queen Mary, University of London.
luis@206 10 % This file copyright 2009 Ivan Damnjanovic, Matthew Davies.
luis@206 11 %
luis@206 12 % This program is free software; you can redistribute it and/or
luis@206 13 % modify it under the terms of the GNU General Public License as
luis@206 14 % published by the Free Software Foundation; either version 2 of the
luis@206 15 % License, or (at your option) any later version. See the file
luis@206 16 % COPYING included with this distribution for more information.
luis@206 17 %
luis@206 18 %%
luis@206 19
luis@190 20 global SMALL_path;
luis@198 21 SMALL_path = fileparts(mfilename('fullpath'));
luis@190 22
luis@198 23 addpath(genpath(SMALL_path));
luis@206 24
luis@206 25