https://github.com/kul-forbes/ForBES
Revision a1c3894f399980ecae7af600559a9cc24e7b461e authored by Lorenzo Stella on 25 January 2017, 11:25:44 UTC, committed by Lorenzo Stella on 25 January 2017, 11:25:44 UTC
1 parent 7c2519e
Raw File
Tip revision: a1c3894f399980ecae7af600559a9cc24e7b461e authored by Lorenzo Stella on 25 January 2017, 11:25:44 UTC
added function value
Tip revision: a1c3894
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