mixing randomly existing values in a vector

hello I have a vector of 10 components - [1 1 1 1 1 1 0 0 0 0] I want to randomly (a uniform distribution is preferred) mixing the components of the vector, while making sure that in the end I will have the same amount of 1 and 0 as in the beginning.
a desired result for example: [1 0 1 0 1 0 1 0 1 1]

 採用された回答

Bruno Luong
Bruno Luong 2018 年 10 月 5 日

0 投票

>> a=[1 1 1 1 1 1 0 0 0 0];
>> r = a(randperm(length(a)))
r =
1 1 0 1 0 1 0 1 0 1
>>

その他の回答 (1 件)

Eliraz Nahum
Eliraz Nahum 2018 年 10 月 5 日

0 投票

thanks a lot

カテゴリ

ヘルプ センター および File ExchangeStartup and Shutdown についてさらに検索

製品

リリース

R2018a

タグ

質問済み:

2018 年 10 月 5 日

回答済み:

2018 年 10 月 5 日

Community Treasure Hunt

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

Start Hunting!

Translated by