what is Selector block in Simulink and how to use it? and what are its type
4 ビュー (過去 30 日間)
古いコメントを表示
回答 (1 件)
madhan ravi
2023 年 12 月 12 日
編集済み: madhan ravi
2023 年 12 月 12 日
It’s purpose is to index a vector.
For example: let’s say you have an array
x = [1, 2, 3]
When the index mode is zero based then
x(0) gives 1
When it is one based then
x(1) gives 1
It is mainly used for indexing vector in loops.
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Get Started with MATLAB についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!