Originally posted by: SystemAdmin
Hi,
I am new in using the Cplex in Matlab environment. I have trouble in setup the Cplex toolbox. My matlab is 64bit 2010a, my Cplex is 12.4
In Matlab, I add path using "set subfolders" as "D:\IBM\ILOG\CPLEX_Studio_Academic 124\cplex\matlab\x86_win32".
When I try the very basic linear program:
>> f = 1;
>> Aineq = 1;-1;
>> bineq = 5;-5;
>> cplexlp(f,Aineq,bineq)
There is an error message shown up as:
??? Error using ==> cplexlp at 254
Undefined function or method 'cplexlink124' for input
arguments of type 'struct'.
Could anyone help me out? Thanks.
#CPLEXOptimizers#DecisionOptimization