I prefer using Matlab in command line.
As I know, the matlab script can be run in this way:
\> matlab < script.m
After I modified a parameter in script.m
, I want to rerun it,
I have to:
\> matlab < script.m
The problem is there is redundant starting of matlab, which is
unnecessary. If you know JVM, it's similar to restarting JVM (java MainClass
).
How to solve this?