On Tue, Feb 07, 2012 at 10:54:47PM +0100, Daniel Seither wrote:
> Hi,
>
> in package optim, function linprog(), there is an error that prevents
> proper execution of the function if only the minimal set of parameters
> (f, A, b) is given.
>
> Example code to reproduce:
>
> f = [-3, -2, -2]';
> A
Hi,
in package optim, function linprog(), there is an error that prevents
proper execution of the function if only the minimal set of parameters
(f, A, b) is given.
Example code to reproduce:
f = [-3, -2, -2]';
A = [ 1, 0, 1;
1, 1, 0;
1, 2, 0];
b = [8, 7, 12]';
linprog(f, A, b)
This