MATLAB: Hyperlink from one *.m file to another *.m file

hyperlink

I have 5 matlab code files and I want to go to 2nd file *.m after I run 1st *.m file. So, is it possible to jump from one matlab code to another by putting a hyperlink at the end of 1st file?

Best Answer

No, hyperlinks are not supported.
However, you can just put the name of the second script at the end of the first script.
script1.m
plot(1:10, rand(1,10));
script2
script2.m
disp('got to script 2')