https://github.com/kul-forbes/ForBES
Revision c32a2211b14ee1d4c1648036157d8fcd123b1405 authored by Lorenzo Stella on 07 July 2016, 08:05:17 UTC, committed by Lorenzo Stella on 07 July 2016, 08:05:17 UTC
1 parent 0dcc6e5
Raw File
Tip revision: c32a2211b14ee1d4c1648036157d8fcd123b1405 authored by Lorenzo Stella on 07 July 2016, 08:05:17 UTC
updated problem processing
Tip revision: c32a221
forbes_compare.m
function outs = forbes_compare(fs, gs, init, aff, constr, opts)
    outs = {};
    for i = 1:length(opts)
        out = forbes(fs, gs, init, aff, constr, opts{i});
%         disp(out);
        outs{end+1} = out;
    end
end
back to top