When did the syntax for linprog change
Ältere Kommentare anzeigen
At one point, the input syntax for linprog was
x=linprog(f,A,b,Aeq,beq,lb,ub,x0,options)
but now (R2023b) I see that it has changed to,
In what release was the support for the first syntax discontinued?
1 Kommentar
Walter Roberson
am 22 Aug. 2024
Before R2019a -- at least the x0 is not documented in R2019a.
Akzeptierte Antwort
Weitere Antworten (1)
Walter Roberson
am 23 Aug. 2024
0 Stimmen
R2018b documents
X = linprog(f,A,b,Aeq,beq,LB,UB,X0) sets the starting point to X0. This
option is only available with the active-set algorithm. The default
interior point algorithm will ignore any non-empty starting point.
As of R2019a, active-set is not a recognized algorithm
Kategorien
Mehr zu Solver Outputs and Iterative Display finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!