Comparing two vectors getting results in the new one

1 visualización (últimos 30 días)
Adam Kepinski
Adam Kepinski el 17 de Nov. de 2017
Comentada: Adam Kepinski el 17 de Nov. de 2017
Hi,
I want to compare two arrays (10000x1) and get a third one with values either 1 (V1>V2) or 0 (V1<V2). Anybody could help?
Thanks

Respuesta aceptada

Birdman
Birdman el 17 de Nov. de 2017
c=a>b
This will return 0(for a<b) and 1(for a>b), 10000x1 logical array.

Más respuestas (1)

Mischa Kim
Mischa Kim el 17 de Nov. de 2017
V3 = V1 > V2

Categorías

Más información sobre Data Types 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