Effacer les filtres
Effacer les filtres

Bundle Funtions inside a Script

2 vues (au cours des 30 derniers jours)
hegel
hegel le 28 Jan 2016
Commenté : hegel le 29 Jan 2016
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

Réponse acceptée

Stephen23
Stephen23 le 28 Jan 2016
Modifié(e) : Stephen23 le 28 Jan 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.
  1 commentaire
hegel
hegel le 29 Jan 2016
thanks a lot, I'll try this.

Connectez-vous pour commenter.

Plus de réponses (1)

Walter Roberson
Walter Roberson le 28 Jan 2016
You should consider using the new facilities to 'Package App'
  1 commentaire
hegel
hegel le 29 Jan 2016
thanks for the info, I had forgotten about the apps but I'll use that for something else.

Connectez-vous pour commenter.

Catégories

En savoir plus sur Entering Commands dans Help Center et File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by