what is wrong with my optimoptions call?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
EDU>> options=optimoptions(@linprog,'Algorithm','simplex'); ??? Error using ==> optimoptions Too many input arguments.
What can I do about it? this is copied from a matlab help example.
Thanks Dylan
0 Kommentare
Akzeptierte Antwort
Shashank Prasanna
am 3 Mai 2013
Dylan, optimoptions was newly introduced in MATLAB R2013a. If you are using an older release use optimset.
options = optimset('linprog');
options.Algorithm = 'simplex';
Weitere Antworten (0)
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!