https://github.com/kul-forbes/ForBES
Revision 36ed76a6e9ac9e8c6e15476d48341e8f6b1226aa authored by Lorenzo Stella on 05 May 2016, 12:18:57 UTC, committed by Lorenzo Stella on 05 May 2016, 12:18:57 UTC
1 parent f5db728
Raw File
Tip revision: 36ed76a6e9ac9e8c6e15476d48341e8f6b1226aa authored by Lorenzo Stella on 05 May 2016, 12:18:57 UTC
updated help file
Tip revision: 36ed76a
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