how can concat cell array with array?
2 ビュー (過去 30 日間)
古いコメントを表示
for example i have cell arrays s{i} ,i want s{i}s pose in one column and another vector like f=[3 4 .....] pose in another column .
0 件のコメント
回答 (2 件)
Cedric
2013 年 10 月 19 日
編集済み: Cedric
2013 年 10 月 19 日
s = {1; 2; 3; 4} ; % Column cell array.
f = [10 20 30 40] ; % Row numeric array.
c = [s, num2cell(f.')] ;
4 件のコメント
Cedric
2013 年 10 月 19 日
If you want to concatenate horizontally the content of cells of s1 and the output of f (assuming that f is a function), their number of columns must match. This means that you have to check that f outputs a 7x1 vector (and not 1x7, otherwise you have to transpose it).
参考
カテゴリ
Help Center および File Exchange で Matrices and Arrays についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!