How to find unique combinations between two columns in a cell array
5 views (last 30 days)
Show older comments
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 Comments
Accepted Answer
Andrei Bobrov
on 1 Sep 2019
Edited: Andrei Bobrov
on 1 Sep 2019
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');
More Answers (0)
See Also
Categories
Find more on Graphics Object Programming in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!