bsxfun with AND condition

2 visualizzazioni (ultimi 30 giorni)
AA
AA il 15 Nov 2016
Commentato: James Tursa il 4 Feb 2017
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);

Risposta accettata

James Tursa
James Tursa il 15 Nov 2016
Modificato: James Tursa il 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.

Più risposte (1)

AA
AA il 3 Feb 2017
no it doesnt work. it gives me one set that is less than compare 2 and another set that is less than compare 1. after that it combines these two sets.
I need compare1<q{x,y}<compare2
  1 Commento
James Tursa
James Tursa il 4 Feb 2017
Please post your code so we know what "... doesn't work ..." means to you.

Accedi per commentare.

Categorie

Scopri di più su MATLAB in Help Center e File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by