transform a cell into a column vector
17 ビュー (過去 30 日間)
古いコメントを表示
Hi. I have a cell 'test' characterized in the first row by a 29x1 array and in the second row by a 27x1 array.
I want to get an array of size 56x1 where the elements are in order, so there are first the 29 numbers of the first array and then the 27 numbers of the second array.
0 件のコメント
採用された回答
Dyuman Joshi
2023 年 7 月 13 日
load('test.mat')
%Vertically concatenate into an array
z = vertcat(test{:})
If you want to convert the output into a cell then sipmly use curly brackets -
out = {z}
0 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Resizing and Reshaping Matrices についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!