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.
假设我们在 中有以下两个矩阵matlab:
matlab
>> x=[1 5;7 8;9 6]
>> y=[6 87]
我正在尝试使它们具有相同的大小。我通过使 的大小与y的大小相同来做到这一点x。但是,当我y再次调用时,我得到的结果是原始维度。
y
x
我希望它们具有相同的尺寸,例如,如果我想测量它们之间的距离,它们必须具有相同的尺寸。
因此,其他单元格可以具有zero例如值。
zero
我怎样才能在matlab中做到这一点?
谢谢。
尝试这个 :
y = padarray(y,size(x)-size(y),'post');
确保 size(x) > size(y)。
有关更多信息,请查看:padarray