How can i read from Matlab m-File the Data Type and Dimension of Simulink Model Signals?

2 views (last 30 days)
How can i read from Matlab m-File the Data Type and Dimension of Simulink Model Signals?

Accepted Answer

Kaustubha Govind
Kaustubha Govind on 12 Mar 2014
These are block properties available for query after the model has been compiled. For example, for the model vdp:
vdp([],[],[],'compile');
d = get_param(gcb,'CompiledPortDataTypes');
s = get_param(gcb,'CompiledPortDimensions');
vdp([],[],[],'term');
Refer to Common Block Properties for a list of such properties. The ones available only after compile are prefixed with the word 'Compiled'.

More Answers (0)

Categories

Find more on Simulink Functions in Help Center and File Exchange

Products

Community Treasure Hunt

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

Start Hunting!