How best to set Matlab Level 2 S-Function port sizes based on dialog parameters?
3 ビュー (過去 30 日間)
古いコメントを表示
I'm creating a Level 2 S-Function with two inputs and one output port. One input port and one Output port will vary in size, but only based upon non-tunable dialog parameters. Note that the variable input and output ports will not be the same size.
I know I can set port sizes to variable in setup like this:
block.OutputPort(1).DimensionsMode = 'Variable';
Then later set the current dimensions like this:
block.OutputPort(1).Dimensions =[1, my_length_var];
but is this the best way in my case?
If it is, where is the best place to set the dimensions, e.g. in InitializeConditions?
0 件のコメント
回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Simulink Functions についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!