view toolboxes/alps/ALPS/configuration.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 0de08f68256b
children
line wrap: on
line source
function [solveNewtonb, gradientDescentx, solveNewtonx] = configuration(mode)
% Function that maps 'mode' value into (SolveNewtonb, GradientDescentx, SolveNewtonx) configuration

if (mode == 0)
    solveNewtonb = 0;
    gradientDescentx = 0;
    solveNewtonx = 0;
elseif (mode == 1)
    solveNewtonb = 0;
    gradientDescentx = 0;
    solveNewtonx = 1;
elseif (mode == 2)
    solveNewtonb = 0;
    gradientDescentx = 1;
    solveNewtonx = 0;
elseif (mode == 4)
    solveNewtonb = 1;
    gradientDescentx = 0;
    solveNewtonx = 0;
elseif (mode == 5)
    solveNewtonb = 1;
    gradientDescentx = 0;
    solveNewtonx = 1;
elseif (mode == 6)
    solveNewtonb = 1;
    gradientDescentx = 1;
    solveNewtonx = 0;
end;