How to create pairwise comparison matrix from input matrix?
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Hi,
I have a matrix 50*48 with all integer values. I want to create a pairwise comparison matrix for the input matrix. Please help me with this.
Thank you in advance
6 commentaires
madhan ravi
le 31 Oct 2018
Modifié(e) : madhan ravi
le 31 Oct 2018
Use the same method which I gave as an answer
Réponses (2)
KSSV
le 20 Sep 2018
May be you are looking for something like this:
A = rand(10,2) ; % Matrix data
B = A(7,:) ; % To compare with A
% Compare A with B, get index
idx = ismember(A,B,'rows') ;
iwant = A(idx,:)
0 commentaires
Voir également
Catégories
En savoir plus sur Matrices and Arrays dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!