How many built-in functions have Matlab?
19 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
How many built-in functions have Matlab R2019b, including all the toolboxes?
9 comentarios
Walter Roberson
el 17 de En. de 2020
In the context of MATLAB, the term "built-in function" refers to functionality that is compiled in to an internal library, as opposed to implemented as .m code (which users could read) or .mlx* code (binary library implementations.)
The number of functions that a user could call is probably not a good measure, as many many functions are not intended for users to call directly.
The number of functions intended for the user to call is potentially of interest, but also gets questionable. Should every method provided for every class be counted? If 17 different functions with the general aim of producing Hankle reductions of a dynamic model are provided, is it "interesting" to count all 17?
You kind of what to know how many "different" things that a language and associated libraries can do, and that is difficult to define.
Guillaume
el 19 de En. de 2020
Also, The number of functions wouldn't be a good metric since some functions are significantly more complex than others. The built-in plus for double is going to be fairly simple, the cpu already knows how to perform addition. On the other hand, some specialised toolbox functions are going to be very complex (e.g. neural network, image processing, etc.) You can't really give them the same weight.
Respuestas (0)
Ver también
Categorías
Más información sobre Startup and Shutdown en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!