matlab 怎么把行向量转成 矩阵向量?

问题描述:

matlab 怎么把行向量转成 矩阵向量?
a=[1,2,3,4,5,6,7.9]
怎么把a 转成矩阵
b=[123;
456;789]?

reshape(a,3,3)'
ans =
1 2 3
4 5 6
7 8 9