what is Selector block in Simulink and how to use it? and what are its type
6 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
0 comentarios
Respuestas (1)
madhan ravi
el 12 de Dic. de 2023
Editada: madhan ravi
el 12 de Dic. de 2023
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 comentarios
Ver también
Categorías
Más información sobre Get Started with MATLAB en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!