Linprog error "-96@30"?

3 views (last 30 days)
Aron Brenner
Aron Brenner on 18 Sep 2019
Commented: Aron Brenner on 19 Sep 2019
When I try to use linprog in MATLAB, it returns the error:
LINPROG has stopped because it encountered an internal error. We are sorry for the inconvenience.
Please contact technical support for assistance with your problem, quoting the code "-96@30".
I tried to run the following code:
f = [3,3.4]
A = [3,4]
b = [20000]
linprog(f,A,b,[],[],[0 0],[10000 10000])
Any help would be greatly appreciated. Thanks!

Accepted Answer

John D'Errico
John D'Errico on 18 Sep 2019
You are trying to solve the problem of minimizing
3*x + 3.4*y
subject to the constraint
3*x + 4*y <= 20000
with bounds of [0,10000] for both x and y.
The solution seems pretty clear to me. It will happen at x=y=0. What does linprog say?
linprog(f,A,b,[],[],[0 0],[10000 10000])
Optimal solution found.
ans =
0
0
So it had no problems at all.
My guess is one of two things happened. You might be using an old MATLAB release, and possibly there was a bug. I seriously doubt that. As this is a trivial problem to solve.
An alternative is you have your own code named linprog. So do these things. First, tell us what release you are using. If you don't, then all I can say is sorry, but it worked perfectly fine using a current release.
Then, look closely at the result of:
which linprog -all
Does it show something strange? Have you written your own version of linprog? There should be only one copy of linprog. In my case, it lives here:
/Applications/MATLAB_R2019a.app/toolbox/optim/optim/linprog.m
  3 Comments
John D'Errico
John D'Errico on 18 Sep 2019
It should do so. I have no idea why it failed, as that is a pretty simple problem to solve.
Aron Brenner
Aron Brenner on 19 Sep 2019
Yep that fixed the problem. Thanks!

Sign in to comment.

More Answers (0)

Categories

Find more on Introduction to Installation and Licensing in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!