I have a question.
After simulate a simulink model I need to get signal dimensions of each line using MATLAB command.
I get line handles by following
<
Alternatively, you can find the signal dimensions and signal widths of each block they originate from, using:
get_param(,'CompiledPortDimensions')
get_param(,'CompiledPortWidths')
Replacing with the appropriate block path for each block of interest. The model must be compiled before you can run these commands, but since you indicate doing this after running the model, that shouldn't be a problem.