how to find value in matrix based on specified location
11 次查看(过去 30 天)
显示 更早的评论
Hi:
I have a matrix and I want to cite the value at specified locaiton, the inputs is not specified row or colume, but the row-id and colume-id, for example:
A=[1,2,3,4;
5,6,7,8;
9,10,11,12;
13,14,15,16];
I want the cite the value at row=2, column=3, and row=3, colume=3
I tried command:
A([2,3],[3,3])
the output is a 2*2 matrix, instead of 7, 11.
is there anyway to make the output to be 7 and 11?
Thanks!
Yu
0 个评论
采纳的回答
DGM
2022-12-17
编辑:DGM
2022-12-17
When you select A([2,3],[3,3]), you're selecting four points. It's easier to understand in this case:
A = [1,2,3,4;
5,6,7,8;
9,10,11,12;
13,14,15,16];
A([1 4],[1 4])
Note that you're selecting the intersection of the specified rows and columns. Since there are two each, there are four elements being selected.
The way around this ambiguity is to use linear indexing
A = [1,2,3,4;
5,6,7,8;
9,10,11,12;
13,14,15,16];
% convert to linear index
idx = sub2ind(size(A),[2,3],[3,3]);
% index into A
A(idx)
0 个评论
更多回答(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!