bsxfun with AND condition
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
How can I use a code to see if compare1<q{x,y}<compare2
Basically the lt/gt function combined with an and function?
bsxfun(@lt,q{x,y},compare2 & q{x,y},compare1);
0 commentaires
Réponse acceptée
James Tursa
le 15 Nov 2016
Modifié(e) : James Tursa
le 15 Nov 2016
Assuming q{x,y} and compare# are different sizes and need bsxfun, just & the two separate calculations:
result = bsxfun(@lt,compare1,q{x,y}) & bsxfun(@lt,q{x,y},compare2);
For R2016b you would not need bsxfun for this at all but could code the < operations directly.
0 commentaires
Plus de réponses (1)
AA
le 3 Fév 2017
1 commentaire
James Tursa
le 4 Fév 2017
Please post your code so we know what "... doesn't work ..." means to you.
Voir également
Catégories
En savoir plus sur Logical dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!