MATHVIEW.RTM is the run-time supervisor/interpreter for MathViews (available only with the Developer Version).
Your pre-compiled function files (SCRIPT FILES ARE NOT ALLOWED) are attached to mathview.rtm, which is renamed to MATHVRT.EXE.
Upon execution, MATHVRT.EXE loads the pre-compiled functions files and calls the entry point mvrun(). mvrun() is the run-time equivalent of startup.m
Here is how to create your standalone MathViews executables:
| _loadlib math_org | % load the original precompiled MathViews MLB | |
| _compile mvrun | % compile mvrun AND all the functions called by mvrun | |
| _savelib | % create a new compiled library file, mathview.MLB | |
| _bind | % create MATHVRT.EXE % (_bind requires mathview.rtm in the current dir) |
function y=mvrun()
n=100;
for i=10:10:n
plot(blackman(i))
pause(6)
end