Bundle Funtions inside a Script
2 次查看(过去 30 天)
显示 更早的评论
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 个评论
采纳的回答
Stephen23
2016-1-28
编辑:Stephen23
2016-1-28
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 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Environment and Settings 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!