Changes between Version 17 and Version 18 of MATLAB API
- Timestamp:
- 02/20/14 13:38:17 (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
MATLAB API
v17 v18 36 36 }}} 37 37 38 In the constructor, the Matlab executable and its arguments, the Java class and script arguments can be specified38 In the constructor, the Matlab executable and its arguments, the Java class, and script arguments can optionally be specified, in any order: 39 39 {{{ 40 40 w = MatlabInstance.new('w', 'my/matlab/script.m', 41 41 matlab: '/opt/bin/matlab', 42 42 matlab_args: '-matlab_arg1 -matlab_arg2', 43 java_class: 'company.MyMatlabJavaInstance') 43 java_class: 'company.MyMatlabJavaInstance' 44 args: 'param1 param2') 44 45 }}} 45 46 == Example ==