How to run a script name inputed by the user within a script.
7 次查看(过去 30 天)
显示 更早的评论
So, I have a script that I want to use to enter variables from an .m file that the user enters.
So, I have
filename=input('Please enter the filename:');
But I want to then run the entered script within the script. Any idea how to do this? I know if I already knew the name of the script I could just put it directly in the script, but I don't know how to do it this way. Thanks.
0 个评论
采纳的回答
更多回答(2 个)
Daniel Shub
2012-4-9
There is the run function
doc run
2 个评论
Image Analyst
2012-4-9
Yes, running something with the command style is different than running it with the function style. With command style, no parentheses are used and it thinks that what you have there is the string itself except without the single quotes around it, so that's why it tried to run a script called "filename.m". With the function style, you pass in a variable and no quotes and it runs it assuming you made the variable with single quotes:
filename = 'c:/blah/foo.m';
run(filename);
So, bottom line, you should use parentheses and then your existing code should work correctly.
Alan
2012-4-9
use the 'eval' function
2 个评论
Daniel Shub
2012-4-10
While I don't like to bash solutions that work, I find this solution to be miserable. Yes, the run function, as suggested by Sean and myself, eventually uses eval, but there is a difference. The run function makes sure that the script is actually a file and not some arbitrary code.
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!