How to find out the maximum number of occurrences of the sequences inside the cell array beginning with particular digit?

조회 수: 2 (최근 30일)
% Suppose I have a cellarray
C = {[1; 2; 3]; [2; 1; 3, 4]; [3; 1; 2]; [1; 2]}; % where any digit won't repeat in the individual cell.
% I was trying this code
for i = 1:3
for j = 1:3
for k = 1:3
if(i ~= j && i ~= k && j ~= k) % to prevent repetition
sequence_check = [i; j; k];
n = sum(cellfun(@(x) ~isempty(strfind(x.',sequence_check.')), C));
t = table(i, j, k, n)
end
end
end
end
% which gives me possible sequences (using 1,2 and 3) | number of occurrences
123 | 1
132 0
213 1
231 0
312 1
321 0
% I need to find out the maximum number of occurrences of the sequences inside the cell array beginning with 1 or 2 or 3 individually.
% Expected output:
123 | 1
213 1
312 1

채택된 답변

Andrei Bobrov
Andrei Bobrov 2018년 11월 19일
C = {[1; 2; 3]; [2; 1; 3; 4]; [ 4; 2; 1; 3];[3; 1; 2]; [1; 2]};
a = perms(1:3);
[~,j2] = cellfun(@(x)ismember(a,x),C,'un',0);
B = cat(3,j2{:});
n = sum(all(diff(B,1,2) == 1,2) & B(:,1,:) > 0,3);
lo = n > 0;
out = [a(lo,:),n(lo)];

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Creating and Concatenating Matrices에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by