001 // GraphLab Project: http://graphlab.sharif.edu 002 // Copyright (C) 2008 Mathematical Science Department of Sharif University of Technology 003 // Distributed under the terms of the GNU General Public License (GPL): http://www.gnu.org/licenses/ 004 005 package graphlab.plugins.connector; 006 007 import graphlab.platform.plugin.PluginMethods; 008 import graphlab.plugins.connector.matlab.MatlabRunner; 009 010 import java.io.File; 011 import java.io.FileNotFoundException; 012 import java.lang.reflect.InvocationTargetException; 013 014 /** 015 * @author Azin Azadi 016 */ 017 public class Connector implements PluginMethods { 018 /** 019 * @see graphlab.plugins.connector.matlab.MatlabRunner#matlabRunner(java.io.File,Object[]) 020 */ 021 public static String matlabRunner(File matlabfile, Object[] params) throws FileNotFoundException, IllegalAccessException, InvocationTargetException { 022 return MatlabRunner.matlabRunner(matlabfile, params); 023 } 024 }