Comparing vectors of different size

3 visualizaciones (últimos 30 días)
Ben
Ben el 18 de Jun. de 2014
Respondida: Andrei Bobrov el 18 de Jun. de 2014
How do I compare two vectors of different size? I want to compare them using the "greater than or equal to operator" or "less than operator". Here's what I'm trying to vectorize:
A = [1 2 3 4 5]; B = [1 2 3]; for i = 1:length(B) C = find(A >= B(i)); end % C = [3 4 5]

Respuesta aceptada

Andrei Bobrov
Andrei Bobrov el 18 de Jun. de 2014
C = A(all(bsxfun(@ge,A,B.')));

Más respuestas (0)

Categorías

Más información sobre Startup and Shutdown en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by