Changes between Version 17 and Version 18 of MATLAB API

Show
Ignore:
Timestamp:
02/20/14 13:38:17 (10 years ago)
Author:
jorisborgdorff
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • MATLAB API

    v17 v18  
    3636}}} 
    3737 
    38 In the constructor, the Matlab executable and its arguments, the Java class and script arguments can be specified 
     38In the constructor, the Matlab executable and its arguments, the Java class, and script arguments can optionally be specified, in any order: 
    3939{{{ 
    4040w = MatlabInstance.new('w', 'my/matlab/script.m',  
    4141        matlab: '/opt/bin/matlab', 
    4242        matlab_args: '-matlab_arg1 -matlab_arg2', 
    43         java_class: 'company.MyMatlabJavaInstance') 
     43        java_class: 'company.MyMatlabJavaInstance' 
     44        args: 'param1 param2') 
    4445}}} 
    4546== Example ==