MATLAB Runtime Server    

Summary List: MATLAB Runtime GUI Application

This list summarizes the steps for creating a MATLAB runtime GUI application from a GUI-based application in MATLAB. The hyperlinks lead to the sections that describe the steps in more detail.

  1. Stamp your development copy of MATLAB.
  2. Adapt the design of the MATLAB portion of the application as necessary. See Design Issues for a Runtime Application.
  3. Decide where to place the files you write for the runtime application.
  4. Create the startup function matlabrt.m by copying toolbox\runtime\matlabrt_template.m to toolbox\local and renaming it matlabrt.m. Then modify it as necessary and use rehash toolboxreset to register the change. It must:
  5. Create the path definition function pathdefrt.m by copying toolbox\runtime\pathdefrt_template.m to toolbox\local and renaming it pathdefrt.m. Then modify it as necessary:
  6. Use buildp to compile all application M-files into runtime P-files.
  1. Test the application:
  1. Return to earlier steps as necessary. When debugging, remember to stay current by deleting old P-files, producing new P-files whenever an M-file changes and using rehash toolboxreset as necessary to register changes.


  Testing with the Runtime Server Variant Developing a MATLAB Runtime Engine Application