gpt4 book ai didi

matlab - 将 3 维数组 reshape 为 2 维

转载 作者:行者123 更新时间:2023-12-04 04:47:12 24 4
gpt4 key购买 nike

我有一个维度的 3 维矩阵:427x470x48

我想把它改造成一个二维矩阵:48x200690

这意味着 old(1, 1, :) 将对应于 new(:, 1)

此外, old(1,2,:) 将对应于 new(:,2) 等等。

谢谢你

最佳答案

做:

new = reshape(permute(old, [3 2 1]), 48, []);

您也可以通过以下方式粗略检查它们是否相等:
numel(intersect(old(1,1,:),new(:,1))) == 48;

关于matlab - 将 3 维数组 reshape 为 2 维,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18004989/

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