How to find particular elements of matrix?
1 次查看(过去 30 天)
显示 更早的评论
A=reshape(1:36,6,6);
How to select the following elements of matrix
7,25,
2,14,20,32
9,27
10,28
5,17,23,35
12,30
these can be find like this
A(1,2)=7, A(1,4)=25....
But is there any generalized way which help even for large matrices.
0 个评论
采纳的回答
Walter Roberson
2021-8-22
A=reshape(1:36,6,6)
targets = {
[7,25]
[2,14,20,32]
[9,27]
[10,28]
[5,17,23,35]
[12,30]
}
for K = 1 : length(targets)
[~, locations{K}] = ismember(targets{K}, A(K,:));
end
celldisp(locations)
3 个评论
Image Analyst
2021-8-22
Could be but you don't seem to have any regular recipe like that. The indexes you gave seem to be fairly random with no obvious formula to get them. However you gave only two locations (1,4) and (1,4) so that's not enough to detect any pattern.
If you need anymore help, upload your values in a matrix, like
linearIndexes = [7,25,...
2,14,20,32,...
9,27,...
10,28,...
5,17,23,35,...
12,30]
all in a row vector (did I do it right?), and give more than 2 location for where to assign those values.
Walter Roberson
2021-8-22
You have two index patterns:
- columns 2 and 5
- columns 1, 3, 4, 6
However, it is not obvious which pattern is to be applied to which row. The longer extracts are rows 2 and 5, which happens to match the column numbers for the shorter rows, but will that always be the case?
You talk about larger matrices, but do not give us any information about how the accesses will generalize. For example are we to deduce that 2, 5 is "second and second-last" ? Are we to deduce that 1, 3, 4, 6 is "first, two middle, last", or are we to deduce that it "everything not selected by the previous pattern" ?
更多回答(0 个)
另请参阅
类别
在 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!