How to look inside class based functions under Phased Array ToolBox?
Show older comments
Currently I am working on a DSP project. Here I am in a need to see inside a MATLAB function. I know many MATLAB built-in functions can be accessed via the command 'edit'. But the functions I need to see are class and object based functions. One of these functions is "Time Delay Beam Forming" under Phased Array Tool Box. Here an object called TimeDelayBeamformer is created with all necessary parameters and it is passed to the step function to perform the beamforming algorithm. I want to see the code. Is there anyway?
Answers (2)
Honglei Chen
on 23 Jan 2015
You can type
edit phased.TimeDelayBeamformer
to see the source code. The code is a System object, but if you are only interested in the algorithm, most of it is contained in stepImpl method. This being said, since it is object oriented, you may need to parse through some inheritance too.
HTH
2 Comments
mohammad.monjil
on 24 Jan 2015
Honglei Chen
on 26 Jan 2015
The implementation is in stepImpl method. You can search "stepImpl" to find the methods in the class definition.
Guillaume
on 23 Jan 2015
edit TimeDelayBeamformer
should work. Otherwise you can always obtain the pass with
which TimeDelayBeamformer
Categories
Find more on Beamforming 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!