How to restrict the range ?
Afficher commentaires plus anciens
I want to restrict the output of the arc cosine to be in the range [-1,1], but I want to know if there is built-in Matlab function for this task and if it is possible for example merge @max & @min simultaneoulsy in the function bsxfun to achieve this task.
Réponse acceptée
Plus de réponses (1)
Walter Roberson
le 3 Mar 2016
min(max(x, -1), 1)
2 commentaires
Susan Arnold
le 3 Mar 2016
Modifié(e) : Susan Arnold
le 3 Mar 2016
Jos (10584)
le 4 Mar 2016
Simply replace -1 and 1 by the minimum and maximum of B
... max(A,min(B(:))) ...
Catégories
En savoir plus sur Logical 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!