Combine cells of a {1,3} cell array.
3 ビュー (過去 30 日間)
古いコメントを表示
I have a 1 x 3 cell array:
1x7230 double 1x7632 double 1x7566 double
{1,1}=
75 267 294 317 462 549 580 656 668
{1,2}=
131 242 300 341 451 491 575 597 724
{1,3}=
72 154 213 270 282 391 601 705 743
How do I combine these into one {1,1} cell array with the numbers in numerical order so it looks something like this: 72 75 131 154 etc...
0 件のコメント
採用された回答
Andrei Bobrov
2015 年 10 月 16 日
A = {[75 267 294 317 462 549 580 656 668];
[131 242 300 341 451 491 575 597 724];
[72 154 213 270 282 391 601 705 743]}
out = sort([A{:}]);
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Multidimensional Arrays についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!