How to determine the dimensions of output signal from a Simulink block programmatically?
6 ビュー (過去 30 日間)
古いコメントを表示
MathWorks Support Team
2018 年 2 月 23 日
回答済み: MathWorks Support Team
2018 年 3 月 21 日
How to determine the dimension of output signal from a Simulink block programmatically?
採用された回答
MathWorks Support Team
2018 年 2 月 23 日
To determine the dimension of output signal from a Simulink block programmatically, please follow these steps:
1. Get the port handles of the required Simulink block. To do this, you can use the "Port Handles" Parameter.
For example:
Handles = get_param('test/Add', 'PortHandles');
This will return a struct. You can isolate Outport handles by accessing it like this :
OutHandles = Handles.Outport
2. You can now use the "CompiledPortDimensions" on the corresponding handle to get the dimensions.
For example:
Dimensions = get_param(Outport, 'CompiledPortDimensions');
0 件のコメント
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!