How to set rate limit?
Afficher commentaires plus anciens
Can somebody please help me I am trying to set a maximum rate limit of an input of aileron deflection to 0.1 radians per second in MATLAB. I can't find how to do this
Réponses (1)
Sean de Wolski
le 7 Mar 2013
You can use min() to saturate:
rate = min(rate,0.1)
1 commentaire
Andrew
le 7 Mar 2013
Catégories
En savoir plus sur Programming 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!