Am I to understand that every function in matlab should be its own file?
52 views (last 30 days)
Show older comments
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 Comments
Answers (1)
John D'Errico
on 4 Sep 2021
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 Comments
See Also
Categories
Find more on Startup and Shutdown in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!