我正在使用 reshape 来显示我在 Matlab 中的一些数据。
x = reshape(x, fs*W, []);
但是我拥有的数据是不均匀的:
Eg. 1 2 3 4 5 6 7
8 9 1 2 3 4 5
6 7 8
我收到一个错误,说 rehape 不适用于不均匀的尺寸:
not divisible into total number of elements, xxxx
有没有解决的办法?
谢谢你的帮助