diff --git a/README.md b/README.md index c023496..bcf6e2f 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ clatlab is a bridge between [Matlab](https://de.mathworks.com/products/matlab.ht ## Installation Download the following files, removed the numbers from their file endings and put them all in the `/Documents/MATLAB folder: -* [clatlab-2.1.5.1-jar-with-dependencies.jar](https://github.com/clij/clatlab/releases/download/2.1.5.1/clatlab-2.1.5.1-jar-with-dependencies.jar) +* [clatlab-2.2.0.0-jar-with-dependencies.jar](https://github.com/clij/clatlab/releases/download/2.2.0.0/clatlab-2.2.0.0-jar-with-dependencies.jar) * [init_clatlab.m](https://github.com/clij/clatlab/blob/master/src/main/matlab_install/init_clatlab.m) Test the installation by executing this script from matlab: diff --git a/pom.xml b/pom.xml index fbbebe5..88dcf76 100644 --- a/pom.xml +++ b/pom.xml @@ -7,12 +7,12 @@ net.haesleinhuepf clij-parent-pom - 2.1.5.1 + 2.2.0.0 net.haesleinhuepf clatlab - 2.1.5.1 + 2.2.0.0 CLATLAB CLIJ2 bridge to Matlab diff --git a/src/main/matlab_install/init_clatlab.m b/src/main/matlab_install/init_clatlab.m index 9738074..7190c16 100644 --- a/src/main/matlab_install/init_clatlab.m +++ b/src/main/matlab_install/init_clatlab.m @@ -15,7 +15,7 @@ function clatlab_ = init_clatlab() if (exist('net.haesleinhuepf.clatlab.CLATLAB') ~= 8) - jar_location = strrep(mfilename('fullpath'), 'init_clatlab', 'clatlab-2.1.5.1-jar-with-dependencies.jar'); + jar_location = strrep(mfilename('fullpath'), 'init_clatlab', 'clatlab-2.2.0.0-jar-with-dependencies.jar'); javaaddpath(jar_location); end clatlab_ = net.haesleinhuepf.clatlab.CLATLAB.getInstance();