convert array vector in matrix
1 回表示 (過去 30 日間)
古いコメントを表示
採用された回答
DGM
2023 年 6 月 24 日
Consider the example:
% a struct array with a field of column vectors
S = struct('field1',(1:10).');
S = repmat(S,10,1);
D = horzcat(S.field1) % concatenate all column vectors into one matrix
0 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Numeric Types についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!