How to create pairwise comparison matrix for row matrix?

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

Example of desired output?
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)

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

Asked:

on 31 Oct 2018

Commented:

on 14 Nov 2018

Community Treasure Hunt

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

Start Hunting!