Info
Questa domanda è chiusa. Riaprila per modificarla o per rispondere.
How to call/run a .m file by selecting a menu bar item from main .m file
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
I'm new in MatLab and I'm designing a tool kit of different functions (each in a .m file) and I designed a main .m file ( and .fig file) with different menu bar items. I'd like to execute any function that I created by selecting it from the menu bar. Please help
0 Commenti
Risposte (1)
KL
il 4 Dic 2017
use its callback
m = uimenu;
m.Text = 'myFunction';
m.Callback = @myFunction;
0 Commenti
Questa domanda è chiusa.
Vedere anche
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!