How do I compare the order of rows in cell array with a matrix?
5 次查看(过去 30 天)
显示 更早的评论
Hi,
I have a numerical array called split_points_rounded and a cell array called valid_high_IDs. The first column of split_points_rounded and the first row of valid_high_IDs should theoretically be in the same order (these are participant IDs from a study).
I am looking for a way to
1) check if they are in the same order and
2) re-order the rows in split_points_rounded according to the order in valid_high_IDs and save that in a new cell array if the two are not already in the same order.
Help is much appreciated!
0 个评论
回答(1 个)
the cyclist
2022-12-11
You can use the ismember function to both test that the values of one array are present in the other one, and also to get their locations in that array. You can then use the output to see if they are in the sorting order you want.
4 个评论
the cyclist
2022-12-11
Your uploaded data are not a great example, since they are already correctly sorted, but I believe this does what you want.
% % Load local file
% load('split_points_rounded.mat','split_points_roundedCopy')
% load('valid_high_IDs.mat','valid_high_IDs')
% Load from web
load(websave('f1','https://www.mathworks.com/matlabcentral/answers/uploaded_files/1227412/split_points_rounded.mat'))
load(websave('f2','https://www.mathworks.com/matlabcentral/answers/uploaded_files/1226807/valid_high_IDs.mat'))
% Convert the cell array with character arrays into a numeric array
idOrder = cellfun(@str2double,valid_high_IDs);
% Find the locations of one array in the other
[~,loc] = ismember(idOrder,split_points_roundedCopy(:,1));
% Sort accordingly
split_points_rounded_reordered = split_points_roundedCopy(loc,:)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Matrices and Arrays 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!