Get DataType from a Simulink Consant Block (datatype is propagated from the output)

2 次查看(过去 30 天)
I would like to get the datatype from a Constant block where the datatype is propagated from the output after update.
For example, block A's output is connected to a signal b (double). What is the command to get the datatype from A so it returns "double" and not "Inherit: Inherit from 'Constant value'"?

回答(1 个)

Fangjun Jiang
Fangjun Jiang 2023-2-17
Make sure your model can pass model update (no errors). See example below:
f14;%open the example model
f14([],[],[],'compile');
p=get_param('f14/u','CompiledPortDataTypes')
p = struct with fields:
Inport: [] Outport: {'double'} Enable: [] Trigger: [] State: [] LConn: [] RConn: [] Ifaction: [] Reset: [] Event: []
f14([],[],[],'term')
bdclose('f14')

类别

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

产品

Community Treasure Hunt

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

Start Hunting!

Translated by