I have two matlab script files .m (not function files) and if I want to call another script in my current script, which command should I use? Thank you.
You can use run('myOtherScript') if you prefer, but it will end up internally
doing the same thing as naming it directly; you might, though, like the
emphasize that it gives that it is a script being mentioned.