Could anyone help me how to simplify the following code.

조회 수: 1 (최근 30일)
jaah navi
jaah navi 2021년 6월 23일
댓글: jaah navi 2021년 6월 23일
A = cell(1,15)
B=A'
B{1}=cell(2,1)
B{2}=cell(2,1)
B{3}=cell(2,1)
B{4}=cell(2,1)
B{5}=cell(2,1)
B{6} = cell(2,2)
B{7}= cell(2,2)
B{8} = cell(2,2)
B{9}= cell(2,2)
B{10} = cell(2,2)
B{11}= cell(2,3)
B{12}= cell(2,3)
B{13}= cell(2,3)
B{14}= cell(2,3)
B{15}= cell(2,3)
in this code instead to write each and every row of the cell array separately is there any method that could be done to simplify it in the single step. For example B{1}.......B{5} are of the same size(2,1) ,B{6}.......B{10} of (2,2) , B{11}.....B{15} of (2,3) .IS it possible to write all the lines in a single step.
  댓글 수: 1
KSSV
KSSV 2021년 6월 23일
Why you are bothered to initialize a cell in each cell in an cell array? You are missing something here.

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

채택된 답변

Mohammad Sami
Mohammad Sami 2021년 6월 23일
I am not sure why you are creating a nested cell array. However you can do it like this.
B = arrayfun(@(x,y)cell(x,y),ones(15,1)*2,repelem([1:3]',5,1),'UniformOutput',false)
B = 15×1 cell array
{2×1 cell} {2×1 cell} {2×1 cell} {2×1 cell} {2×1 cell} {2×2 cell} {2×2 cell} {2×2 cell} {2×2 cell} {2×2 cell} {2×3 cell} {2×3 cell} {2×3 cell} {2×3 cell} {2×3 cell}
  댓글 수: 4
jaah navi
jaah navi 2021년 6월 23일
I need another help from you.
could you please help me to create categorical array for B = 15×1 cell array
{2×1 cell}
{2×1 cell}
{2×1 cell}
{2×1 cell}
{2×1 cell}
{2×2 cell}
{2×2 cell}
{2×2 cell}
{2×2 cell}
{2×2 cell}
{2×3 cell}
{2×3 cell}
{2×3 cell}
{2×3 cell}
{2×3 cell}

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

추가 답변 (0개)

카테고리

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

태그

Community Treasure Hunt

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

Start Hunting!

Translated by