Randomly convert exact number of 1 to 0 in binary matrix

조회 수: 2 (최근 30일)
mnemonix
mnemonix 2020년 5월 22일
댓글: mnemonix 2020년 5월 23일
Hi.
I have binary matrix 3x3.
0 1 0
1 0 1
1 1 1
Let say, it includes six "1" values on random positions. I need to convert two "1" to "0", but randomly.
0 1 0
1 0 0
1 0 1
one of the possible outcomes.
Thank you for your help!

채택된 답변

per isakson
per isakson 2020년 5월 22일
Try
%%
x = [ 0 1 0
1 0 1
1 1 1];
%%
ix_one = find( x == 1 );
ix_set_zero = randi( numel(ix_one), 1,2 );
x( ix_one( ix_set_zero ) ) = 0
  댓글 수: 3
per isakson
per isakson 2020년 5월 23일
Thanks for accepting, however, there is a flaw in my answer. randi() may return two equal numbers, which leads to that only one 1 is replaced by 0.
>> randi( 6, 1,2 )
ans =
6 6
>>
>> m = 1:8;
>> m([6,6])=0
m =
1 2 3 4 5 0 7 8
>>
With or without replacement, the statement
ix_set_zero = randi( numel(ix_one), 1,2 );
needs to be replaced by
ix_set_zero = randperm( numel(ix_one), 2 );
mnemonix
mnemonix 2020년 5월 23일
Thanks for warning.

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

추가 답변 (1개)

Stephen23
Stephen23 2020년 5월 22일
>> M = [0,1,0;1,0,1;1,1,1]
M =
0 1 0
1 0 1
1 1 1
>> X = find(M);
>> M(X(randperm(numel(X),2))) = 0
M =
0 0 0
1 0 1
1 1 0

카테고리

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

제품


릴리스

R2017b

Community Treasure Hunt

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

Start Hunting!

Translated by