Refresh Matlab Expoter

I have created a Matlab exporter in the analysis pipeline. Is there a function available to refresh it and save the .mat file to a specified path using the Python API instead of clicking the refresh button?

Like all entities in the Analysis pipeline, the Matlab exporter has an Update method to execute.

to find more information on a specific class you can

  • export the pipeline from the GUI as a python script
  • use the help() function to get more information on a specific class, e.g.
import s4l_v1 as s4l
help(s4l.analysis.exporters.MatlabExporter)