How do I select different value of resistances depending on the control input.
Afficher commentaires plus anciens
I wish to simulate a system with changing resistive loads. I want to select different value of resistance depending on the value of my control signal. How can I achieve this?
1 commentaire
Iain
le 31 Mai 2013
We need more details to be more helpful. Are you working in matlab, or simulink. What's your control signal? What kind of change to the load do you expect from your control signal?
Réponses (2)
David Sanchez
le 31 Mai 2013
An option is to create your own function with the switch-case statement
switch control
case 1
resistance = 100;
case 2
resistance = 1000;
case 3
resistance = 10000;
end
Muruganandham Subramanian
le 31 Mai 2013
Modifié(e) : Muruganandham Subramanian
le 31 Mai 2013
0 votes
Use MultiportSwitch
1 commentaire
Ashwini
le 4 Juin 2013
Catégories
En savoir plus sur Switches and Breakers dans Centre d'aide et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!