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 中将数据导入为一个名为 A 的矩阵,其大小为
48 x 52(48 行 X 52 列)。
如何在 Matlab 中将矩阵大小调整为 48 X 48?
好
B = A(:,1:48)
将创建B一个48x48匹配的一部分的矩阵A。那是你要的吗 ?
B
48x48
A
如果您不关心丢失这些列中的任何数据,则可以使用删除最后 4 列
A(:,49:52) = []
否则,我会按照 HPM 的建议分配给一个新矩阵。