gpt4 book ai didi

matlab - 沿三维使用查找

转载 作者:行者123 更新时间:2023-12-02 08:11:35 25 4
gpt4 key购买 nike

我有一个 2*3*3 矩阵a:

a=[1 1 1;1 1 1];
a(:,:,2)=[1 1 1;1 1 1]+1;
a(:,:,3)=[1 1 1;1 1 1]+2;

将三维视为深度值。我想找到 a 大于 2 的深度。在这种情况下,结果应该是:

[3 3 3;3 3 3]

有没有办法以矢量化的方式做到这一点?

我的尝试

我尝试了以下方法,但效果不佳:

inds=find(a>2) %find indices of elements>2  
lev=ceil(inds/2/3) %divide by the size of each layer. it returns the layer indices on which the an element>2 is

depths = reshape(lev,2,3)

inds =

13
14
15
16
17
18


lev =

3
3
3
3
3
3

depths =

3 3 3
3 3 3

在这种情况下可行,但这是一个幸运的情况。

如果我使用:

a=[1 1 1;1 1 2];
a(:,:,2)=[1 1 1;1 1 2]+1;
a(:,:,3)=[1 1 1;1 1 2]+2;

现在它无法工作,因为在最后一列中我有多个大于 2 的值。确实:

inds=find(a>2) %find indices of elements>2  
lev=ceil(inds/2/3) %divide by the size of each layer. it returns the layer indices on which the an element>2 is

depths = reshape(lev,2,3)

inds =

12
13
14
15
16
17
18


lev =

2
3
3
3
3
3
3

inds =

12
13
14
15
16
17
18


lev =

2
3
3
3
3
3
3

Error using reshape To RESHAPE the number of elements must not change.

我看不到解决方法。

我还尝试将 find 与 'first' 选项一起使用,但完全没有成功。

最佳答案

您可以使用 max 函数的第二个输出:

[~,idx]=max(a>2,[],3);

关于matlab - 沿三维使用查找,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46378729/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com