How can I produce this matrix?

조회 수: 1 (최근 30일)
S AsZ
S AsZ 2023년 11월 10일
편집: S AsZ 2023년 11월 10일
I want to produce a m×n (m<n) matrix in which each element can only be 0 or 1 and the sum of first row must be n-(m-1) and the sum of each column must be 1. For example it can be similar to this: [1 1 0 0 1 1; 0 0 0 1 0 0; 0 0 1 0 0 0]

채택된 답변

Bruno Luong
Bruno Luong 2023년 11월 10일
m=6
m = 6
n=3
n = 3
j=randperm(m,n-1);
A=accumarray([2:n;j]',1,[n,m]);
A(1,setdiff(1:end,j))=1
A = 3×6
1 0 1 1 1 0 0 1 0 0 0 0 0 0 0 0 0 1
  댓글 수: 1
S AsZ
S AsZ 2023년 11월 10일
편집: S AsZ 2023년 11월 10일
Thank you 🙏🏻

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

추가 답변 (0개)

카테고리

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

제품


릴리스

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by