Switch block need help
3 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Adham
le 4 Août 2014
Réponse apportée : Adham
le 8 Août 2014
Could anyone please describe this block for me and especially the control port I didn't understand it even after reading the help.
thx
2 commentaires
Réponse acceptée
Christopher Berry
le 7 Août 2014
Adham,
The documentation for this block is a bit confusing. Think of it as an if-else, which may make more sense if you have a computer science background.
Something like this:
if (cond == TRUE)
output = u1 %Input port 1
else
output = u3 %Input port 3
end
Where cond can be any of the following 3 choices:
1. cond = u2 >= Threshold
2. cond = u2 > Threshold
3. cond = u2 ~= 0
So the output of the block will be either input 1 or input 2 depending on the value of input 2, the type of condition selected and the value of threshold selected.
Hope that helps some!
0 commentaires
Plus de réponses (1)
Voir également
Catégories
En savoir plus sur Discontinuities dans Help Center et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!