Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有 30 个矩阵(1446x1124),其中包含从 0 到 99 的值。我想要一个输出矩阵,具有相同的大小,并且在每个单元格中包含该矩阵的一个元素的出现频率(在 0 和 1 之间)(例如 2) 超过 30 个输入矩阵。
首先确保您的矩阵存储正确。如果它们的大小都相同,我会推荐一个 3 维矩阵。然后它应该看起来像这样:
M = round(rand(30,1446,1124));
现在我不确定您希望输出具有什么形状,但是假设您想知道 2s 的分数,这很简单:
mean(M(:)==2)