필터 지우기
필터 지우기

Partition of a set.

조회 수: 2 (최근 30일)
rohini more
rohini more 2021년 3월 30일
댓글: rohini more 2021년 4월 6일
consider a partition of X= with where denotes the union of disjoint sets.
Remark that ,
I would like to implement the matlab code for above partition.
Please help me .
Thanks in advance.
  댓글 수: 3
rohini more
rohini more 2021년 3월 30일
Let n=7, L=4
If I split n is following way
n=1+2+3+1 according to that [n]={1}
rohini more
rohini more 2021년 3월 30일
Input is n=7 and L=4
Output should be
n=1+2+3+1, [n]=
where h1=1,h2=2 ,h3=3,h4=1 and H1={1},H2={2,3}, H3={4,5,6},H4={7}

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

채택된 답변

Bruno Luong
Bruno Luong 2021년 3월 30일
편집: Bruno Luong 2021년 3월 30일
>> N=5; L=3;
>> h=allVL1(L,N-L)+1;
>> H=arrayfun(@(r) mat2cell(1:N,1,h(r,:)),(1:size(h,1))','unif',false);
>> DispPartObj(H) % FEX in my other answer
The 6 partition(s) are:
{1} {2} {3 4 5}
{1} {2 3} {4 5}
{1} {2 3 4} {5}
{1 2} {3} {4 5}
{1 2} {3 4} {5}
{1 2 3} {4} {5}
  댓글 수: 2
rohini more
rohini more 2021년 3월 30일
Okay.
Thank you very much.
rohini more
rohini more 2021년 4월 6일
Suppose I would like to consider random partition of set what changes I have to do in this code.
Thanks in advance.

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

추가 답변 (1개)

Bruno Luong
Bruno Luong 2021년 3월 30일
편집: Bruno Luong 2021년 3월 30일
>> N=5; L=3;
>> DispPartObj(SetPartition(N,L))
The 25 partition(s) are:
{1 2 3} {4} {5}
{1 2 4} {3} {5}
{1 2} {3 4} {5}
{1 3 4} {2} {5}
{1 3} {2 4} {5}
{1 4} {2 3} {5}
{1} {2 3 4} {5}
{1 2 5} {3} {4}
{1 2} {3 5} {4}
{1 2} {3} {4 5}
{1 3 5} {2} {4}
{1 3} {2 5} {4}
{1 3} {2} {4 5}
{1 5} {2 3} {4}
{1} {2 3 5} {4}
{1} {2 3} {4 5}
{1 4 5} {2} {3}
{1 4} {2 5} {3}
{1 4} {2} {3 5}
{1 5} {2 4} {3}
{1} {2 4 5} {3}
{1} {2 4} {3 5}
{1 5} {2} {3 4}
{1} {2 5} {3 4}
{1} {2} {3 4 5}
  댓글 수: 1
rohini more
rohini more 2021년 3월 31일
Okay.
Thank you.

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

카테고리

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