Robochameleon
v1.0
|
A prefilter for digital signals. More...
Inherits unit.
Public Member Functions | |
function | DigitalPreFilter_v1 (in param) |
Class constructor. | |
function | traverse (in obj, in in) |
Main function call. | |
![]() | |
function | traverseNode (in obj) |
Set unique ID when creating a unit. More... | |
function | connectOutput (in obj, in uobj, in unitOutput, in nextUnitInput) |
Specify where signal should go next. More... | |
function | connectOutputs (in obj, in units, in destInputs) |
Specify where signal should go next. More... | |
function | writeInputBuffer (in obj, in sig, in inputId) |
write input buffer | |
function | horzcat (in varargin) |
horizontal concatenation | |
function | vertcat (in varargin) |
vertical concatenation | |
function | setparams (in obj, in params, in REQUIRED_PARAMS, in QUIET_PARAMS) |
set parameters More... | |
function | view (in obj) |
Show interactive GUI through unit_view-class. | |
Static Public Member Functions | |
static function | filterByFFT (in io, in filter) |
User defined filter. More... | |
Public Attributes | |
Property | nOutputs |
Number of outputs. | |
Property | nInputs |
Number of inputs. | |
Property | gaussianOrder |
Order of Gaussian Pre-Filter. | |
Property | gaussianBandwidth |
Bandwidth of Gaussian Pre-Filter. | |
Property | gaussianMaxFrequency |
Property | besselOrder |
Order of Bessel Pre-Filter. | |
Property | besselBandwidth |
Bandwidth of Bessel Pre-Filter. | |
Property | userDefinedFilter |
User defined filter in time domain, same sampling rate. | |
![]() | |
Property | inputBuffer |
Buffer for storing inputs as we traverse the graph. | |
Property | nextNodes |
Children nodes. | |
Property | destInputs |
Destination inputs in children. | |
Property | results |
For storing results. | |
Property | label |
Property | draw |
enable/disable plotting | |
Property | nInputs |
Number of signals traverse expects. | |
Property | nOutputs |
Number of outputs traverse expects. | |
A prefilter for digital signals.
This function implements a prefilter in order to mitigate filtering and group delay impairments of the electrical front-end of DAC.
Observations
Example
Advanced Example
Definition at line 58 of file DigitalPreFilter_v1.m.
|
static |
User defined filter.
Gaussian pre-filtering Bessel pre-filtering for group delay
Property DigitalPreFilter_v1::gaussianMaxFrequency |
Maximum bandwidth of Gaussian Pre-Filter (to prevent ultra-high gains and noise increasing);
Definition at line 78 of file DigitalPreFilter_v1.m.