merge multiple cells in only one
9 ビュー (過去 30 日間)
古いコメントを表示
Hi! How can I merge these two cells?

Final results:

3 件のコメント
Stephen23
2023 年 9 月 8 日
@Alberto Acri: note that storing scalar strings in cell arrays is very inefficient, and it avoids all of the benefits of using string arrays. You should be using string arrays, just as the documentation recommends:
採用された回答
Dyuman Joshi
2023 年 9 月 8 日
As you want the final result to be a 4x1 cell array -
mat1 = load('value1.mat');
value1 = mat1.value1;
mat2 = load('value2.mat');
value2 = mat2.value2;
out1 = vertcat({value1},value2)
In case you want to store them as 4x6 as well -
out2 = vertcat(value1,vertcat(value2{:}))
3 件のコメント
Dyuman Joshi
2023 年 9 月 9 日
Store the data in an array and use indexing to access the data -
mat1 = load('value1.mat');
value1 = mat1.value1;
mat2 = load('value2.mat');
value2 = mat2.value2;
out1 = vertcat({value1},value2)
variable = vertcat(out1{:})
Here, variable_k will correspond to the kth row of variable.
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Logical についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!