We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fc7cbd3 commit 0ef725bCopy full SHA for 0ef725b
1 file changed
README.md
@@ -60,11 +60,11 @@ version = '4.4.2';
60
tempdir = 'matconsolectl_demo';
61
62
% make a directory to copy the jar into
63
-mkdir tempdir;
+mkdir(tempdir);
64
% download the jar
65
-URL = ['https://repo1.maven.org/maven2/com/diffplug/matsim/matlabcontrol/' version '/matlabcontrol-' version '.jar'];
+URL = ['https://repo1.maven.org/maven2/com/diffplug/matsim/matconsolectl/' version '/matconsolectl-' version '.jar'];
66
filename = [tempdir '/matconsolectl-' version '.jar'];
67
-urlwrite(URL,filename);
+websave(filename,URL);
68
% add it to the path
69
javaaddpath([pwd '\' tempdir]);
70
0 commit comments