Changes between Version 13 and Version 14 of MATLAB API

Show
Ignore:
Timestamp:
11/19/13 11:31:38 (11 years ago)
Author:
jorisborgdorff
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • MATLAB API

    v13 v14  
    3131* `MUSCLE_BOOLEAN` - array of logicals 
    3232 
    33 In the MUSCLE configuration file, kernels should use the `muscle.core.standalone.MatlabKernel` class or its subclass as their implementation, e.g., 
     33In the MUSCLE configuration file, kernels should use the `muscle.core.standalone.MatlabKernel` class or its subclass as their implementation, e.g.: 
    3434{{{ 
    3535w = Instance.new('w', 'muscle.core.standalone.MatlabKernel') 
    3636}}} 
    3737 
     38The script that is going to be executed must be set in the `script` property of the instance, e.g.: 
     39{{{ 
     40w['script'] = 'my/matlab/script.m' 
     41}}} 
     42If the script requires additional arguments, they may be set in the `args` property. 
     43 
     44If 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{{{ 
     46w['matlab_command'] = "/opt/bin/matlab" 
     47w['matlab_args'] = "-matlab_arg1 -matlab_arg2" 
     48}}} 
    3849== Example == 
    3950