https://github.com/tknijnen/LOBICO
Raw File
Tip revision: 459bf8e7e25fe9b591b153497afb1fe23a04af62 authored by Theo Knijnenburg on 29 December 2016, 21:34:32 UTC
added code to apply LOBICO model to (test) data
Tip revision: 459bf8e
Init.m
%% paths
restoredefaultpath;
if isunix
    addpath(genpath('/users/tknijnen/cplex/ILOG/CPLEX_Studio124/cplex/matlab'));
    addpath('/users/tknijnen/cplex/ILOG/CPLEX_Studio124/cplex/examples/src/matlab');
else
    addpath(genpath(('C:\Program Files\IBM\ILOG\CPLEX_Studio125\cplex\matlab\x64_win64')));
    addpath('C:\Program Files\IBM\ILOG\CPLEX_Studio125\cplex\examples\src\matlab');
end
addpath(genpath(pwd));

%% Variables and Figs
clc; clear all; close all;
back to top