how to construct 4x2 matrix taking value 0 and 1 randomly? No rows should be repeated.
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
for example 4x2 matrix, the output should be [1 0;1 1;0 1; 0 0]. In this matrix no rows are repeated. I uses the code randi([0,1],4,2). I got 4x2 matrix but getting repeated row like [1 0;1 1;1 0; 0 0].Here, row1 and row3 are same, which is not acceptable.
please help to construct the matrix without any repeation of rows.
0 Commenti
Risposte (2)
Andrei Bobrov
il 18 Gen 2017
Modificato: Andrei Bobrov
il 18 Gen 2017
One of ways:
dec2bin(0:3)-'0'
0 Commenti
Vedere anche
Categorie
Scopri di più su Logical in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!