Padding a cell array?
4 ビュー (過去 30 日間)
表示 古いコメント
採用された回答
Voss
2022 年 11 月 28 日
Maybe something like this:
C = {1 2 3 4};
C_new = cell(1,2*numel(C));
C_new(1:2:end) = C
0 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Find more on Logical in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!