【发布时间】:2020-12-24 17:04:09
【问题描述】:
我可以在直方图中绘制多个具有相同维度的图
x = rand(1000,3);
hist(x);
但我无法绘制多个不同维度的图。
x1 = rand(1100,1);
x2 = rand(1000,1);
x3 = rand(900,1);
x = [x1 x2 x3]
hist(x)
我收到以下错误
Error using horzcat
Dimensions of arrays being concatenated are not consistent.
请有人指出我解决问题的正确方向。
【问题讨论】: