export the script from already made GUI
4 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Hi everyone,
I have a GUI file for an instrument which is reading the data through USB and plotting it in real time.
I would like to export the data in real time and analyse it to give realtime feedback based on the data. How I can extract the script from the GUI file?
Thanks for your help!
2 Commenti
Risposte (1)
Walter Roberson
il 27 Lug 2022
If the GUI is written in MATLAB, then the source code is the "script", and if you want to extend the GUI to be able to do something else, you would modify the existing source code.
If you have a compiled GUI, a .exe, then you cannot extract the source code from it -- at least not in any easy way. In some circumstances it would be possible to "decompile" an executable, but it is often a pain to do.
2 Commenti
Walter Roberson
il 28 Lug 2022
I am not sure what the question is then?
You could modify the callback function to do whatever is required.
"export" the data is not general for us to give advice.
Vedere anche
Categorie
Scopri di più su Interactive Control and Callbacks in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!