com.mathworks.jmi.Matlab Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of matlab-control-jmistub Show documentation
Show all versions of matlab-control-jmistub Show documentation
MATLAB JMI Stubs as provided compile-time dependency
The newest version!
package com.mathworks.jmi;
/**
* A partial stubbed out implementation of the Matlab class with the method's
* used by matlabcontrol. This stub exists so that matlabcontrol can compile
* against this library. At runtime this library is not referenced, instead the
* jmi.jar on MATLAB's classpath is used. The build script for matlabcontrol
* intentionally does not include this library in the distribution folder it
* generates.
*
* @author Joshua Kaplan
*/
public class Matlab {
public static Object mtFevalConsoleOutput(String function, Object[] args, int nargout)
throws Exception {
throw new UnsupportedOperationException("stub");
}
public static void whenMatlabIdle(Runnable runnable) {
throw new UnsupportedOperationException("stub");
}
}