How to get the source code of a function

5 Ansichten (letzte 30 Tage)
Giti Dimrov
Giti Dimrov am 13 Dez. 2021
Kommentiert: Sigrid am 13 Dez. 2021
Is there a way to get the source code of a function of the communication toolbox in Matlab (eg., comm.OFDMModulator)?

Antworten (1)

John D'Errico
John D'Errico am 13 Dez. 2021
Bearbeitet: John D'Errico am 13 Dez. 2021
If the function is compiled, then no. Sorry, but no. MathWorks does not give out code, unless you work for them. So sure, just get a job there.
If the code is not compiled, so just an m--file, you can view it using the type function. This is far better than editing the code in the editor, since people far too often make changes without knowing they did so, and then save those changes. And since those who want to do this are often people who might not even realize they just saved some random change to a file, this is a source of biugs for new users to MATLAB. So avoid using the editor to view code.
If the code is compiled, and you try to list it out, this is what you will see for built-in functions:
type prod
'prod' is a built-in function.
So again, you probably just need to get a job there. And since the MathWorks is a nifty place to work, just go for it. ;-)

Tags

Produkte

Community Treasure Hunt

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

Start Hunting!

Translated by