How to get the source code of a function

조회 수: 4 (최근 30일)
Giti Dimrov
Giti Dimrov 2021년 12월 13일
댓글: Sigrid 2021년 12월 13일
Is there a way to get the source code of a function of the communication toolbox in Matlab (eg., comm.OFDMModulator)?

답변 (1개)

John D'Errico
John D'Errico 2021년 12월 13일
편집: John D'Errico 2021년 12월 13일
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. ;-)

카테고리

Help CenterFile Exchange에서 OFDM에 대해 자세히 알아보기

태그

제품

Community Treasure Hunt

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

Start Hunting!

Translated by