Daniel@0: function opt_vect = foptions() Daniel@0: % FOPTIONS Sets default parameters for optimisation routines Daniel@0: % For compatibility with MATLAB's foptions() Daniel@0: % Daniel@0: % Copyright (c) Dharmesh Maniyar, Ian T. Nabney (2004) Daniel@0: Daniel@0: opt_vect = zeros(1, 18); Daniel@0: opt_vect(2:3) = 1e-4; Daniel@0: opt_vect(4) = 1e-6; Daniel@0: opt_vect(16) = 1e-8; Daniel@0: opt_vect(17) = 0.1;