gpt4 book ai didi

arrays - MATLAB 2013a : sum + squeeze dimension inconsistencies

转载 作者:太空宇宙 更新时间:2023-11-03 19:41:40 25 4
gpt4 key购买 nike

请让我试着用一个例子来解释

numel_last_a = 1;
numel_last_b = 2

a = rand(2,20,numel_last_a);
b = rand(2,20,numel_last_b);
size(squeeze(sum(a,1)))
size(squeeze(sum(b,1)))

在这种情况下,输出将是

ans = 1 20
ans = 20 2

这意味着我必须捕获 numel_last_x == 1 的特殊情况来应用转置操作以与后续步骤保持一致。我猜一定有更优雅的解决方案。你们能帮帮我吗?

编辑:抱歉,代码错误!

最佳答案

以下观察结果是关键:

  1. 您提到的不一致性深埋在 Matlab 语言中:所有数组都被认为是至少是二维的。例如,ndims(pi) 给出 2
  2. Matlab 中的另一条规则是假定所有数组都具有无限多的尾随单维度。例如,size(pi,5) 给出 1

根据观察 1,squeeze如果这样做会给出少于两个维度,则不会删除单例维度。文档中提到了这一点:

B = squeeze(A) returns an array B with the same elements as A, but with all singleton dimensions removed. A singleton dimension is any dimension for which size(A,dim) = 1. Two-dimensional arrays are unaffected by squeeze; if A is a row or column vector or a scalar (1-by-1) value, then B = A.

如果你想摆脱first单例,你可以利用观察2并使用reshape :

numel_last_a = 1;
numel_last_b = 2;
a = rand(2,20,numel_last_a);
b = rand(2,20,numel_last_b);
as = reshape(sum(a,1), size(a,2), size(a,3));
bs = reshape(sum(b,1), size(b,2), size(b,3));
size(as)
size(bs)

给予

ans =
20 1
ans =
20 2

关于arrays - MATLAB 2013a : sum + squeeze dimension inconsistencies,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33251991/

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