The MathWizards

MathViews™ compiler

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:


    function y=mvrun()
    n=100;
    for i=10:10:n
        plot(blackman(i))
        pause(6)
    end