Decision Optimization

Decision Optimization

Delivers prescriptive analytics capabilities and decision intelligence to improve decision-making.

 View Only
  • 1.  ILOG Cplex 12.4 for Matlab

    Posted Sat April 06, 2013 04:45 PM

    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


  • 2.  Re: ILOG Cplex 12.4 for Matlab

    Posted Mon April 15, 2013 01:29 PM

    Just to be sure: You did follow the instructions given in the user manual?


    #CPLEXOptimizers
    #DecisionOptimization