Clear Filters
Clear Filters

How to create pairwise comparison matrix for row matrix?

4 views (last 30 days)
hai, example matrix :
a=[3 3 2 3 5 3 5 3 4];
How to create a pairwise comparison matrix for the above row matrix?
Thanks in advance
  2 Comments
RAJKUMAR SUBRAMANIAN
RAJKUMAR SUBRAMANIAN on 31 Oct 2018
a=[1 2 3]; % 1 2 3 % 1 1/1 1/2 1/3 % 2 2/1 1/1 2/3 % 3 3/1 3/2 1/1 pairwise=[1/1 1/2 1/3; 2/1 1/1 2/3; 3/1 3/2 1/1];

Sign in to comment.

Answers (1)

Bruno Luong
Bruno Luong on 31 Oct 2018
Edited: Bruno Luong on 31 Oct 2018
Replace == with whatever comparison operator that is suitable for you
C = a == a.'
Edit, seem like you want (this is called division, not comparison)
C = a.' ./ a

Categories

Find more on MATLAB in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!