what is the source code of awgn function?
5 views (last 30 days)
Show older comments
Is the source code for built-in matlab functions such as awgn available?
0 Comments
Accepted Answer
Steven Lord
on 21 Jul 2020
The awgn function is implemented as a MATLAB function file in Communications Toolbox. If you have this toolbox installed, you can see the source code for this function.
You can call type to display it in the Command Window (which could display a lot of text in the Command Window, but offers no chance of accidentally modifying the function.)
You can call edit to open it in the MATLAB Editor (has no effect on the Command Window, but be careful not to modify it.)
You can call dbtype to display only certain sections of the text (displays less text in the Command Window but still offers no chance of accidentally modifying it.)
dbtype 1:10 awgn.m % Display just the first ten lines
Note that not all functions in MathWorks products are implemented as MATLAB function files (or MATLAB script files or MATLAB class files.) For something like the matrix multiplication operator (* or mtimes) it is implemented as a built-in function and we do not distribute the source code for built-in functions.
0 Comments
More Answers (0)
See Also
Categories
Find more on Propagation and Channel Models 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!