All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.mathworks.jmi.Matlab Maven / Gradle / Ivy

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");
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy