필터 지우기
필터 지우기

Combine cells of a {1,3} cell array.

조회 수: 8 (최근 30일)
JE
JE 2015년 10월 16일
댓글: JE 2015년 10월 16일
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...

채택된 답변

Andrei Bobrov
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{:}]);

추가 답변 (1개)

Guillaume
Guillaume 2015년 10월 16일
편집: Guillaume 2015년 10월 16일
v = sort([yourcellarray{:}])
Note that I've not put the result into a single cell cell array because there's not much point.
if you really want to:
c = {sort([yourcellarray{:})]}
  댓글 수: 2
JE
JE 2015년 10월 16일
74 89 101 279 399 461 711 797 846
I end up with this, which doesn't make sense because after 74, most of these numbers cannot be found in my original array.
JE
JE 2015년 10월 16일
My bad, wrong variable.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Multidimensional Arrays에 대해 자세히 알아보기

태그

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by