Bundle Funtions inside a Script
3 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Hello, I wrote a script for parsing and plotting data. Also I wrote a bunch of specific functions in separate files to do these operations. I'd like to see if it is possible to define all these functions at the end of the script so that I don't need to keep track of so many files. It would be easier also if I wanted to give these files to somebody else, they would have everything in one single file. thanks in advance! -m
0 Commenti
Risposta accettata
Stephen23
il 28 Gen 2016
Modificato: Stephen23
il 28 Gen 2016
The easiest option is to turn the script into a function, and then put all of the other functions in the same Mfile. Doing this is easy, reliable, and it gives you exactly one simple Mfile.
With MATLAB it is not currently possible to mix scripts and functions in one Mfile, so you cannot simply place all of those function at the end of the script. But it is easy to convert a script to a function, and then you can put all of the other functions in the same file. The first function is the one that can be accessed externally by calling the its name, all of the other functions can be called by any function in that file (called local functions).
You should really be writing functions anyway: scripts are great for playing with code, but not for writing serious code (especially not code that you will be distributing to others!). This is because functions each have their own workspace, letting you encapsulate your algorithm without it being disturbed by the calling workspace, and vice versa.
Più risposte (1)
Vedere anche
Categorie
Scopri di più su Environment and Settings 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!