필터 지우기
필터 지우기

How do I convert a 3 x3 cell to a 3 x 1 cell?

조회 수: 2 (최근 30일)
Brad
Brad 2015년 8월 17일
편집: Azzi Abdelmalek 2015년 8월 17일
I have a 3 x 3 cell matrix that looks like this;
1 1 0
1 0 1
0 0 1
I'm searching for a way (if possible) to convert this to a 3 x 1 cell that looks like this;
[1,1,0]
[1,0,1]
[0,0,1]
Does MATLAB have a built in functiont that accomplishes this?
Thank you.

채택된 답변

Azzi Abdelmalek
Azzi Abdelmalek 2015년 8월 17일
편집: Azzi Abdelmalek 2015년 8월 17일
a=[1 1 0;1 0 1;0 0 1]
b=num2cell(a,2)
If a is a cell array
a={1 1 0;1 0 1;0 0 1}
b=num2cell(cell2mat(a),2)

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Data Type Conversion에 대해 자세히 알아보기

태그

제품

Community Treasure Hunt

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

Start Hunting!

Translated by