当元素类似于'(p,q)'时查找MATLAB单元阵列的唯一元素

时间:2019-02-24 17:24:08

标签: matlab unique cell-array

我有一个 MATLAB 像这样的单元格数组:

a = {'(q0, q1)' '(q2, q3)' '(q1, q0)' '(q4, q5)'};

'(q0, q1)''(q1, q0)'在我的应用程序中无关紧要,因此我想消除其中之一。您认为最好的方法是什么?

2 个答案:

答案 0 :(得分:2)

所以,这是我的建议:

% Input
a = {'(q0, q1)' '(q0, q1)' '(q2, q3)' '(q1, q0)' '(q4, q5)' '(q12, q3)'}

% Omit duplicates
A = unique(a);

% Save for later indexing
AA = A;

% Length of unique-fied input
n = length(A);

% Get x of qx by regular expression -> cell array of cell arrays
A = regexp(A, '\d*', 'match');

% Outer cell array to array + reshape for nicer indexing
A = reshape(cell2mat(A), 2, n);

% Convert char to num for all cell elements -> array
A = cellfun (@(x) str2num(x), A);

% Sort indices for each tuple, i.e. (q1, q0) -> (q0, q1)
A = sort(A)';

% Omit duplicates
[~, I] = unique(A, 'rows');

% Output
b = AA(I)

结果是:

a =
{
  [1,1] = (q0, q1)
  [1,2] = (q0, q1)
  [1,3] = (q2, q3)
  [1,4] = (q1, q0)
  [1,5] = (q4, q5)
  [1,6] = (q12, q3)
}

b =
{
  [1,1] = (q1, q0)
  [1,2] = (q2, q3)
  [1,3] = (q12, q3)
  [1,4] = (q4, q5)
}

而且,因为你们都爱一线;-):

a = {'(q0, q1)' '(q0, q1)' '(q2, q3)' '(q1, q0)' '(q4, q5)' '(q12, q3)'}
[~, ind] = unique(sort(cellfun (@(x) str2num(x), reshape(cell2mat(regexp(a, '\d*', 'match')), 2, length(a))))', 'rows');
b = a(ind)

答案 1 :(得分:2)

看起来像HansHirse,我叫golfing。 :)

我走了textscan路线,最终得到了一个类似但更短的解决方案:

>> a = {'(q0, q1)' '(q0, q1)' '(q2, q3)' '(q1, q0)' '(q4, q5)' '(q12, q3)'};
>> [~, index] = unique(sort(cell2mat(textscan([a{:}], '(q%f, q%f)')), 2), 'rows', 'stable');
>> b = a(index)

b =

  1×4 cell array

    '(q0, q1)'    '(q2, q3)'    '(q4, q5)'    '(q12, q3)'