How to find unique combinations between two columns in a cell array
5 次查看(过去 30 天)
显示 更早的评论
Hi,
I am trying to find all the unique combinations between two columns in a cell array so I can identify if a given sensor has different numbers associated to it. The code below almost works: it does identify that there two numbers associated to sensor2 (98 and 97) but it does not identify that there are two numbers associated to sensor3 (also 98 and 97). The problem comes from the fact that the numbers are not necessarily unique (which can be confusing). It is the combination of the 2 columns that is unique, not the number (99, 98, 97).
So how can I fix the code below so it identifies if a given sensor has more than one number associated to it?
test = {'sensor1', 'sensor1', 'sensor2', 'sensor2', 'sensor3', 'sensor3'; '99' '99' '98' '97' '98' '97'}';
[~, k] = unique(test(:, 2), 'stable')
info = test(k, :);
if numel(info(:, 1)) ~= numel(unique(info(:, 1)))
[x, ~, y] = unique(info(:, 1));
z = hist(y, unique(y));
duplicated_sensor = x(z > 1);
fprintf('Warning! The serial number is not unique for the following sensor: %s\n', duplicated_sensor{:})
else
fprintf('The serial numbers are unique for all sensors')
end
Thank you,
0 个评论
采纳的回答
Andrei Bobrov
2019-9-1
编辑:Andrei Bobrov
2019-9-1
test = {'sensor1', 'sensor1', 'sensor2', 'sensor2', 'sensor3', 'sensor3';
'99' '99' '98' '97' '98' '97'}'
T = cell2table(test);
T.test2 = str2double(T.test2 );
out = varfun(@(x)x(:)',T,'GroupingVariables','test1');
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Graphics Object Programming 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!