MATLAB: Comparing two vectors getting results in the new one

vectors

Hi,
I want to compare two arrays (10000×1) and get a third one with values either 1 (V1>V2) or 0 (V1<V2). Anybody could help?
Thanks

Best Answer

c=a>b
This will return 0(for a<b) and 1(for a>b), 10000x1 logical array.