https://github.com/kul-forbes/ForBES
Revision 2303d5e71454cd7e4141d935a587d74d4baccbc4 authored by Lorenzo Stella on 27 January 2017, 13:37:57 UTC, committed by Lorenzo Stella on 27 January 2017, 13:37:57 UTC
1 parent 0402dad
Raw File
Tip revision: 2303d5e71454cd7e4141d935a587d74d4baccbc4 authored by Lorenzo Stella on 27 January 2017, 13:37:57 UTC
fixed bug
Tip revision: 2303d5e
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