Clear Filters
Clear Filters

HOW TO COMPARE THE TWO DIFFRENT ARRAYS ELEMENTS IN MATLAB

2 views (last 30 days)
hi HOW TO COMPARE THE TWO DIFFRENT ARRAYS ELEMENTS IN MATLAB a=[1 2 3 4 5 5] b=[1 2 4 5 3 6] this two are the inputs
  2 Comments
Matt Fig
Matt Fig on 12 Sep 2012
Kesavan, You need to be more precise. Did you see what I wrote in my answer below? So explain in what way you want to compare elements.

Sign in to comment.

Accepted Answer

Matt Fig
Matt Fig on 12 Sep 2012
Edited: Matt Fig on 12 Sep 2012
It depends on what you mean by "compare elements" in your application.
A = [3 4]; % An array. Let's "compare" elements...
A(1)>A(2)
A(1)<A(2)
A(1)==A(2)
  1 Comment
Matt Fig
Matt Fig on 12 Sep 2012
And in what way do you want to compare them? Look at what I wrote above, think it over, write a comment that clearly shows what you want to do!

Sign in to comment.

More Answers (0)

Tags

No tags entered yet.

Community Treasure Hunt

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

Start Hunting!