如何在matlab中从第三维选择第三矩阵中的特定索引

发布于 2024-11-18 05:24:13 字数 400 浏览 1 评论 0原文

我知道这是一个简单的问题,但很难用一句话来表达答案。所以,我有一个像这样大小为 2x2x3 的 3d 矩阵

A(:,:,1) =[1     1;  1    1];
A(:,:,2) =[2     2; 2     2];
A(:,:,3) =[4     4; 4     4];

和大小为 2x2 的矩阵 B

B = [ 1 2; 2 3];

我需要的是从 A 中的每个第三维中进行选择使用矩阵 B 的一个数字:

for i=1:2,
  for j=1:2,
    C(i,j) = A(i,j,B(i,j));
  end
end

如何在没有循环的情况下在一行中实现?

I know this is a simple question but difficult to formulate in one sentence to google the answer.So, I have a 3d matrix with size 2x2x3 like this

A(:,:,1) =[1     1;  1    1];
A(:,:,2) =[2     2; 2     2];
A(:,:,3) =[4     4; 4     4];

and matrix B with size 2x2

B = [ 1 2; 2 3];

What i need is to chose from each third dimension in A just one number using matrix B:

for i=1:2,
  for j=1:2,
    C(i,j) = A(i,j,B(i,j));
  end
end

How to that in one line without a loop?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

痴情 2024-11-25 05:24:13

不是真正的单行,但没有循环:

[I J] = ind2sub (size(B), 1:numel(B));
linInd = sub2ind (size (A), I, J, B(:)');
C = reshape (A(linInd), size(B));

Not really a single line, but without a loop:

[I J] = ind2sub (size(B), 1:numel(B));
linInd = sub2ind (size (A), I, J, B(:)');
C = reshape (A(linInd), size(B));
兔小萌 2024-11-25 05:24:13

这是另一种变体:

[r,c,~] = size(A);
[J,I] = meshgrid(1:size(B,1), 1:size(B,2));
idx = reshape(I(:) + r*(J(:)-1) + r*c*(B(:)-1), size(B));
C = A(idx)

Here is another variation:

[r,c,~] = size(A);
[J,I] = meshgrid(1:size(B,1), 1:size(B,2));
idx = reshape(I(:) + r*(J(:)-1) + r*c*(B(:)-1), size(B));
C = A(idx)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文