hdldispmdlparams - Display HDL model parameters with nondefault values - MATLAB (original) (raw)
Main Content
Display HDL model parameters with nondefault values
Syntax
Description
hdldispmdlparams([model](#mw%5Fe72feb5f-c128-473e-a2eb-1e90197c8b81))
displays, for the specified model, the names and values of HDL parameters that have nondefault values.
hdldispmdlparams([model](#mw%5Fe72feb5f-c128-473e-a2eb-1e90197c8b81),["all"](#mw%5F5cd77a63-5a18-4080-b32f-8bafd65aeac9))
displays the names and values of all HDL parameters for the specified model.
Examples
This example displays HDL properties of the current model,sfir_fixed
, that have nondefault values.
open_system("sfir_fixed") hdldispmdlparams(bdroot)
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% HDL CodeGen Parameters (non-default) %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
HDLSubsystem : 'sfir_fixed/symmetric_fir'
This example displays all of the HDL properties and values of the current model,sfir_fixed
.
open_system("sfir_fixed") hdldispmdlparams(bdroot,"all")
%%%%%%%%%%%%%%%%%%%%%%%%% HDL CodeGen Parameters %%%%%%%%%%%%%%%%%%%%%%%%%
AdaptivePipelining : 'off' AdderSharingMinimumBitwidth : 0 AutoPlace : 'on' AutoRoute : 'on' Backannotation : 'off' . . . VerilogFileExtension : '.v' Workflow : 'Generic ASIC/FPGA' sschdlMatrixProductSumCustomLatency : -1
Input Arguments
If you pass in "all"
,hdldispmdlparams
displays the names and values of all HDL properties of the specified model.
Version History
Introduced in R2010b