bsxfun with AND condition

1 visualización (últimos 30 días)
AA
AA el 15 de Nov. de 2016
Comentada: James Tursa el 4 de Feb. de 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);

Respuesta aceptada

James Tursa
James Tursa el 15 de Nov. de 2016
Editada: James Tursa el 15 de Nov. de 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.

Más respuestas (1)

AA
AA el 3 de Feb. de 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 comentario
James Tursa
James Tursa el 4 de Feb. de 2017
Please post your code so we know what "... doesn't work ..." means to you.

Iniciar sesión para comentar.

Categorías

Más información sobre Logical en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by