Can't Get Rid of UseMatrixTypesInHDL Warning

2 次查看(过去 30 天)
I keep getting a warning basically telling my that UseMatrixTypesInHDL should be turned on to handle matrix signals for a specific block. However, I still get the warning for as if I did not change the setting to "on". How can I get rid of this warning particular to this setting?

回答(2 个)

Aman Vyas
Aman Vyas 2020-7-29
编辑:Aman Vyas 2020-7-29
Hi,
You can try disabling InstantiateFunction, because if its "on" UseMatrixTypesInHDL has no effect and in turn generates warning.
For enabling UseMatrixTypesInHDL you can use following command:
hdlset_param('myModel/dutSubsys/myMLFcn', 'UseMatrixTypesInHDL', 'on')
You can set the InstantiateFunctions parameter using the HDL Block Properties dialog box:
  1. Right-click the MATLAB Function block.
  2. Select HDL Code > HDL Block Properties.
  3. For InstantiateFunctions, select on.
Alternatively, you can try this command:
hdlset_param('my_DUT/my_MATLABFcnBlk', 'InstantiateFunctions', 'on')
For more info, refer to this documentation link (UseMatrixTypesInHDL Section)
Hope it helps!

Kiran Kintali
Kiran Kintali 2020-7-29
This is not exepcted behavior. Please reach out to support@mathworks.com for additional help.
In 20b pre-release this option is no longer visible in the property dialog. HDL Coder will always generate code for matrix types which consumes less indexing logic and more efficient.

类别

Help CenterFile Exchange 中查找有关 HDL Coder 的更多信息

产品

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by