Main Content
Complex real part postfix
Text to append to real part of complex signal names
Model Configuration Pane: Global Settings / General
Description
Specify the character vector to append to real part of complex signal names.
Settings
'_re'
(default) | character vectorDefault: '_re'
Enter a text to be appended to the names generated for the real part of complex signals.
Tips
To set this property, use the functions hdlset_param
or makehdl
. To view the property value, use
the function hdlget_param
.
To append a postfix '_repart'
to the generated pipeline register names, use either of these methods:
Pass the property as an argument to the
makehdl
function.makehdl(gcb,'ComplexRealPostfix','_repart')
When you use
hdlset_param
, you can set the parameter on the model and then generate HDL code usingmakehdl
.hdlset_param(gcs,'ComplexRealPostfix','_repart'') makehdl('myDUT')
Recommended Settings
No recommended settings.
Programmatic Use
Parameter: ComplexRealPostfix |
Type: character vector |
Default: '_re' |
Version History
Introduced in R2012a