Changes between Version 13 and Version 14 of MATLAB API
- Timestamp:
- 11/19/13 11:31:38 (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
MATLAB API
v13 v14 31 31 * `MUSCLE_BOOLEAN` - array of logicals 32 32 33 In the MUSCLE configuration file, kernels should use the `muscle.core.standalone.MatlabKernel` class or its subclass as their implementation, e.g. ,33 In the MUSCLE configuration file, kernels should use the `muscle.core.standalone.MatlabKernel` class or its subclass as their implementation, e.g.: 34 34 {{{ 35 35 w = Instance.new('w', 'muscle.core.standalone.MatlabKernel') 36 36 }}} 37 37 38 The script that is going to be executed must be set in the `script` property of the instance, e.g.: 39 {{{ 40 w['script'] = 'my/matlab/script.m' 41 }}} 42 If the script requires additional arguments, they may be set in the `args` property. 43 44 If the `matlab` executable is not in the path, or if additional arguments to MATLAB are necessary to run the script, the properties `matlab_command` and `matlab_args` can be set in the configuration file, e.g., 45 {{{ 46 w['matlab_command'] = "/opt/bin/matlab" 47 w['matlab_args'] = "-matlab_arg1 -matlab_arg2" 48 }}} 38 49 == Example == 39 50