Matlab - Using 3rd party java classes in Parallel Computing Toolbox

390 views Asked by At

I am using Matlab 2013b and Mosek as an external library to solve demanding integer optimization programs. The problem appears when I try to use the external library together with the Parallel Computing Toolbox. It looks like I do not add the classpath correctly... This is the error:

Error using partCorrelationClusteringWithMosek (line 61) An UndefinedFunction error was thrown on the workers for 'Model'. This might be because the file containing 'Model' is not accessible on the workers. Use addAttachedFiles(pool, files) to specify the required files to be attached. See the documentation for 'parallel.Pool/addAttachedFiles' for more details.

In general I add the classpath as :

javaaddpath('/home/user/mosek/7/tools/platform/linux64x86/bin/mosekmatlab.jar');

but how do I do this in the case of the Parallel Computing Toolbox?

0

There are 0 answers