我在 matlab 中有一个 128 x 100 矩阵,其中每一列都应被视为一个单独的元素。我们称这个矩阵为 M。
我有另一个 128 x 2000 矩阵(称为 V),由矩阵 M 的列组成。
我将如何制作一个直方图来映射第二个矩阵中使用的每一列的频率?
hist(double(V),double(M)) gives the error:
Error using histc
Edge vector must be monotonically
non-decreasing.
我该怎么办?