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.
toolbox
, then remember to use rehash toolboxreset
to register each change you make.
toolbox
and move the P-files under toolbox
only towards the end of your development and testing process, then remember to include the final destination directories in pathdefrt
.
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:
pathdefrt.m
by copying toolbox\runtime\pathdefrt_template.m
to toolbox\local
and renaming it pathdefrt.m
. Then modify it as necessary:
cleanp
to remove any .p
files from your path and current directory.
depdir('matlabrt')
to determine the runtime path.
toolbox
later on, then include their destination directories in the runtime path.
rehash toolboxreset
to register the change in pathdefrt.m
.
buildp
to compile all application M-files into runtime P-files.
eval
, MATLAB add-on products
toolbox
, if they are not already there. After moving them, use rehash toolboxreset
to register the changes.
runtime on
and runtime off
.
rehash toolboxreset
as necessary to register changes.
![]() | Testing with the Runtime Server Variant | Developing a MATLAB Runtime Engine Application | ![]() |