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

m-filesimulink

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

Best Answer

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'.