how to execute an .m file by clicking push button in an another gui file?
1 次查看(过去 30 天)
显示 更早的评论
hi, i have created a gui file with a push button. i want to run another matlab file by clicking the push button in gui file. help me regarding this.
thank you.
0 个评论
回答(2 个)
Image Analyst
2015-5-12
Just put the name of the second m-file in the callback function of your push button. If the file is a function, rather than a script, you can also pass it input arguments if you want to or need to.
2 个评论
Image Analyst
2015-5-13
Not sure what that means, but I've tried running a script in another script, in a simple function, and in the pushbutton callback of a program written with GUIDE, and in all cases simply putting this on it's own line
secondscript
ran secondscript.m. I did not have to do
run('secondscript.m');
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Interactive Control and Callbacks 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!