Robochameleon
v1.0
|
Extended arbitrary waveform generator. More...
Inherits module.
Public Member Functions | |
function | ExtendedAWG_v1 (in param) |
Class constructor. More... | |
![]() | |
function | module () |
Create sink for internal output buffers. | |
function | view (in obj) |
Show biograph through module_view-class. | |
function | getOutput (in obj) |
Function to access module output for various intentions. | |
function | keepOutput (in obj) |
Function tells outputBuffer sink not to delete itself after traverse. | |
function | traverse (in obj, in varargin) |
Traverse function for modules. More... | |
![]() | |
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. | |
Public Attributes | |
Property | nInputs |
Number of inputs. | |
Property | nOutputs |
Number of outputs. | |
![]() | |
Property | nInputs |
Number of input arguments (required) | |
Property | nOutputs |
Number of output arguments (required) | |
![]() | |
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. | |
Additional Inherited Members | |
![]() | |
function | exportModule (in obj, in varargin) |
Construct module. More... | |
function | connectInputs (in obj, in destInternalUnits, in destInternalInputs) |
Connect input signal to internal unit(s) More... | |
![]() | |
Property | outputBuffer |
Where output signal is stored. | |
Extended arbitrary waveform generator.
This is an extended arbitrary waveform generator which contains a waveform generator, digital to analog conversion precompensator and digital to analog converter.
Block diagram illustrating dependencies:
Definition at line 17 of file ExtendedAWG_v1.m.
function ExtendedAWG_v1::ExtendedAWG_v1 | ( | in | param | ) |
Class constructor.
Constructs an object of type ExtendedAWG_v1. It also constructs a WaveformGenerator_v1, a DACPrecompensator_v1 and DAC_v1.
param.nOutputs | Number of outputs |
param.totalLength | Output sequence lenght [symbols]. |
param.PRBSOrder | Polynomial order (any integer 2-23; 27, 31) |
param.modulationFormat | Modulation format |
param.modulationOrder | Modulation order |
param.nModes | Number of Modes (or polarizations) |
param.samplesPerSymbol | It is the desired output number of samples per symbol. |
param.symbolRate | You are able to define a symbol rate for your signal here. The output sample frequency will be define as symbolRate*samplesPerSymbol. |
param.pulseShape | Choose among 'rc', 'rrc', 'rz33', 'rz50', 'rz67', 'nrz' or 'custom'; |
param.filterCoeffs | You should define this as a vector if you chose 'custom' 'pulseShape'. |
param.filterSymbolLength | You should define a symbol length for 'rc' or 'rrc' filters. The default value is 202. |
param.rollOff | The Roll-Off factor. You should define this value if you are using 'rc' or 'rrc' shapings. Usually, this number varies from 0 to 1. |
param.DACPreGaussianOrder | Order of Gaussian Pre-Filter [Default: 1] |
param.DACPreGaussianBandwidth | Bandwidth of Gaussian Pre-Filter |
param.DACPreBesselOrder | Order of Bessel Pre-Filter [Default: 1] |
param.DACPreBesselBandwidth | Bandwidth of Bessel Pre-Filter |
param.bitResolution | Resolution of DAC in bits [Default: 8] |
param.targetENoB | Target Effective Number of Bits |
param.upsamplingRate | Upsampling rate [see DAC_v1] |
param.skew | Skew [see DAC_v1] |
param.jitterVariance | Jitter amplitude [see DAC_v1] |
param.clockError | Clock deviation [see DAC_v1] |
param.rectangularBandwidth | Bandwidth of rectangular filter |
param.DACGaussianOrder | Order of Gaussian filter [see DAC_v1] |
param.DACGaussianBandwidth | Bandwidth of Gaussian filter |
param.DACBesselOrder | Order of Bessel filter [see DAC_v1] |
param.DACBesselBandwidth | Bandwidth of bessel filter |
obj | An instance of the class ExtendedAWG_v1 |