how can i change the dimensions of a matrix?
1 次查看(过去 30 天)
显示 更早的评论
how can i change the dimensions of a matrix from 100000*5 to column vector 100000*1 without making any change of sequence of records
0 个评论
回答(2 个)
KSSV
2016-10-2
k = rand(100000,5); %random matrix
k1 = k(:,1) ;% first column
k2 = k(:,2) ;% second column
ki = k(:,i) ;% ith column, i=1,2,3,5
Read about matrix indexing.
2 个评论
Walter Roberson
2016-10-2
k = k(:,1);
This would lose information.
Is your intention that each element of the 100000 x 1 would be a vector of length 5? If so then
k_cell = mat2cell(k, ones(1, size(k,1)), size(k, 2));
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Creating and Concatenating Matrices 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!