Reshape 1xn vector with matlab -
hii have vector dimension of 1x55 , want reshape row row , 11x5 matrix. can me ?
here´s example:
a=[1,2,3,4,5,6,7,8,9...55] after reshaping b=[1,2,3,4,5 6,7,8,9,10 11,12,13... ... 55]
thanks lot
reshape , transpose:
reshape(a, 5, 11)'
Comments
Post a Comment