matlabcontrol

MatlabControl - control MATLAB from Java

License

License

The Apache Software License, Version 2.0
GroupId

GroupId

com.diffplug.matsim
ArtifactId

ArtifactId

matlabcontrol
Last Version

Last Version

0.0.1
Release Date

Release Date

Type

Type

jar
Description

Description

matlabcontrol
MatlabControl - control MATLAB from Java
Project URL

Project URL

https://github.com/diffplug/matlabcontrol
Source Code Management

Source Code Management

https://github.com/diffplug/matlabcontrol

Download matlabcontrol

How to add to project

<!-- https://jarcasting.com/artifacts/com.diffplug.matsim/matlabcontrol/ -->
<dependency>
    <groupId>com.diffplug.matsim</groupId>
    <artifactId>matlabcontrol</artifactId>
    <version>0.0.1</version>
</dependency>
// https://jarcasting.com/artifacts/com.diffplug.matsim/matlabcontrol/
implementation 'com.diffplug.matsim:matlabcontrol:0.0.1'
// https://jarcasting.com/artifacts/com.diffplug.matsim/matlabcontrol/
implementation ("com.diffplug.matsim:matlabcontrol:0.0.1")
'com.diffplug.matsim:matlabcontrol:jar:0.0.1'
<dependency org="com.diffplug.matsim" name="matlabcontrol" rev="0.0.1">
  <artifact name="matlabcontrol" type="jar" />
</dependency>
@Grapes(
@Grab(group='com.diffplug.matsim', module='matlabcontrol', version='0.0.1')
)
libraryDependencies += "com.diffplug.matsim" % "matlabcontrol" % "0.0.1"
[com.diffplug.matsim/matlabcontrol "0.0.1"]

Dependencies

There are no dependencies for this project. It is a standalone project that does not depend on any other jars.

Project Modules

There are no modules declared in this project.

MatConsoleCtl: Control MATLAB from Java

Maven artifact Latest version Javadoc License Apache

Changelog Travis CI

MatConsoleCtl is a Java API that allows calling MATLAB from Java. You can eval, feval, as well as get and set variables. Interaction can be performed from either inside MATLAB or outside MATLAB (both by starting a new MATLAB or by connecting to an existing MATLAB).

MatlabProxyFactoryOptions.Builder builder = new MatlabProxyFactoryOptions.Builder();
// setup the factory
//    setCopyPasteCallback() connects to an existing MATLAB by copy-pasting a few lines into the command window
//    setUsePreviouslyControlledSession() starts a new MATLAB or connects to a previously started MATLAB without any user intervention

MatlabProxyFactory factory = new MatlabProxyFactory(builder.build());
// get the proxy
MatlabProxy proxy = factory.getProxy();
// do stuff over the proxy
proxy.eval("disp('hello world!)")
proxy.setVariable("a", 5.0);
Object a = proxy.getVariable("a");
double actual = ((double[]) result)[0];
assert(actual == 5.0)
// disconnect the proxy
proxy.disconnect();

Javadoc links for MatlabProxyFactoryOptions.Builder and MatlabProxy.

Contributions are welcome, see the contributing guide for development info.

Demo

MatConsoleCtl includes a demo GUI. Below is a script you can use to run the demo inside of MATLAB:

version = '4.6.0';
tempdir = 'matconsolectl_demo';

% make a directory to copy the jar into
mkdir(tempdir);
% download the jar
URL = ['https://repo1.maven.org/maven2/com/diffplug/matsim/matconsolectl/' version '/matconsolectl-' version '.jar'];
filename = [tempdir '/matconsolectl-' version '.jar'];
websave(filename,URL);
% add it to the path
javaaddpath([pwd '\' filename]);

% run it
matlabcontrol.demo.DemoMain

You can also run the demo outside of MATLAB by downloading the jar, then running java -jar matconsolectl-4.6.0.jar at a console.

Compatibility

MatConsoleCtl works on Win/Mac/Linux, MATLAB R2007b through R2016b, and it will continue to work so long as MATLAB maintains the Java MATLAB Interface.*

* On OS X 10.5, R2009a and earlier, you will need to do some hacking. matlabcontrol requires Java 6, and Apple only released 64-bit Java 6 for OS X 10.5, while MATLAB only released 32-bit MATLAB for R2009a and earlier. There are unofficial ways to run 32-bit Java 6 on OS X 10.5.

Acknowledgements

This is forked from the matlabcontrol project originally maintained on the now-defunct Google Code. The name was changed to ensure that we don't infringe the original project's license, but we did not change the package names, so this project is binary compatible with the original matlabcontrol. We are very thankful to Joshua Kaplan for creating matlabcontrol, but this fork is in no way associated with or endorsed by any authors of the original project.

We have fixed some bugs and added some features (see the changelog), and we will maintain this library into the future. We're happy to accept pull requests too!

com.diffplug.matsim

DiffPlug

View, edit, compare. Anything, from anywhere.

Versions

Version
0.0.1