comparison and display the appeared most elements

조회 수: 2 (최근 30일)
joha
joha 2015년 10월 11일
댓글: Star Strider 2015년 10월 11일
The selected patients are with the Status = 1, are patient 1,2 & 4 .
I need to compare the genes among 1, 2, & 4, and display the same gene, for example: E.
Then display the gene appeared most among the 3 patients.
This is how I compare three of them .
P1 = {'A' ,'C' , 'E' , 'F'};
>> P2 = {'B' ,'D' , 'E' , 'G'};
>> P4 = {'C' ,'F' , 'E' , 'K'};
>> cmp_p1_p2=strcmp(P1,P2)
cmp_p1_p2 =
0 0 1 0
>> cmp_p1_p4=strcmp(P1,P4)
cmp_p1_p4 =
0 0 1 0
>> cmp_p2_p4=strcmp(P2,P4)
cmp_p2_p4 =
0 0 1 0

채택된 답변

Walter Roberson
Walter Roberson 2015년 10월 11일
all_genes = union(union(P1,P2),P4);
occurrences = ismember(all_genes, P1) + ismember(all_genes, P2) + ismember(all_genes, P4);
max_count = max(occurrences);
most_common_idx = find(occurrences == max_count);
most_common_genes = all_genes(most_common_idx);
The result might include multiple genes, if there are multiple genes which occur equally often.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Oceanography and Hydrology에 대해 자세히 알아보기

태그

아직 태그를 입력하지 않았습니다.

Community Treasure Hunt

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

Start Hunting!

Translated by