Am I to understand that every function in matlab should be its own file?
52 次查看(过去 30 天)
显示 更早的评论
It looks like matlab does not use tradional curly brackets to encapsulate a function definition like most programming languages seem to do.
So should I be making a stand-alone matlab file for each function I want to use in a project?
0 个评论
回答(1 个)
John D'Errico
2021-9-4
Like SOME languages. Perhaps the ones you know. But certainly not all other languages.
In general, yes, it is not unreasonable to make your functions separate m-files. However, if your main function calls functions that are specific to it, then they can be nested functions or sub-functions, both of which can be contained in the main. These functions are in general not callable from the outside, although that can be accomplished if you return a function handle from the main function.
The use of separate functions has some virtue in that they can then be easily written in advance, then debugge, all as separate functions. As well, those separate functions can now be used to solve multiple problems.
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Startup and Shutdown 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!