https://github.com/kul-forbes/ForBES
Revision 4b12eb06a82a2c276b4024ebc3b0d5c1b8dfd27e authored by Lorenzo Stella on 05 May 2016, 14:57:20 UTC, committed by Lorenzo Stella on 05 May 2016, 14:57:20 UTC
1 parent 36ed76a
Raw File
Tip revision: 4b12eb06a82a2c276b4024ebc3b0d5c1b8dfd27e authored by Lorenzo Stella on 05 May 2016, 14:57:20 UTC
muted test
Tip revision: 4b12eb0
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