comparison of two column vectors

1 Ansicht (letzte 30 Tage)
Chaudhary P Patel
Chaudhary P Patel am 9 Apr. 2022
sir/madam i have two column vectors, i want to compare element by element and want to know which is large or small.
please help me, how can i write command for it.

Antworten (1)

per isakson
per isakson am 9 Apr. 2022
Bearbeitet: per isakson am 9 Apr. 2022
An example
%%
v1 = rand( 6,1 );
v2 = rand( 6,1 );
%%
v1 > v2
ans = 6×1 logical array
1 0 0 1 1 1
This result tells us that the first, fourth, fifth and sixth element of v1 are larger than the corresponding elements of v2
  8 Kommentare
Chaudhary P Patel
Chaudhary P Patel am 19 Apr. 2022
@per isakson @Michael Kleder @Matt J Sir the real problem is, I have 2 type of Column vector of 6X1
F_s1=(1;5;7;4;6;8)
F_s2=(0;5;8;3;7;7)
and
F_r1=(0;1;5;7;4;3)
F_r2=(1;2;11;1;5;9)
sir i have to compare F_s <= F_r each elemet one by one and which satisfy the condition for that some other actions i have to take. So suggest me how can i do it element by element not a complete one.
Chaudhary P Patel
Chaudhary P Patel am 19 Apr. 2022
please @per isakson sir, suggest me how can i compare element by element?

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Loops and Conditional Statements finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by