Originally posted by: MLJ
I have installed ILOG Studio 12.4 on a Windows 64-bit machine.
I am trying to solve the basic linear programming problem with Matlab and cplexlp. The code is given below.
The issue is that I keep getting the following error message:
"
??? Error using ==> cplexlp at 254
Undefined function or method 'cplexlink124' for input arguments of type 'struct'.
"
Can you tell me how to resolve this issue?
f = -1; -2; -3';
Aineq = 1 -1 1; 1 -3 1;
bineq = 20 30;
lb = 0 0 0';
ub=40 inf inf';
x= cplexlp(f,Aineq,bineq,],[,lb,ub)
#CPLEXOptimizers#DecisionOptimization