Can you determine at runtime if the executed code is running as a function or a script? If yes, what is the recommended method?
|
+1 for a very interesting question. I can think of a way of determining that. Parse the executed m-file itself and check the first word in the first non-trivial non-comment line. If it's the
The resulting value should be 1 if it's a function file, and 0 if it's a script. Keep in mind that this code needs to be run from the m-file in question, and not from a separate function file, of course. If you want to make a generic function out of that (i.e one that tests any m-file), just pass the desired file name string to
To make this function more robust, you can also add error-handling code that verifies that the m-file actually exists before attempting to |
|||||
|
|
There is another way.
It might not be the most pretty way, but it works. Regards |
||||
|
|