How binary Random number generation upto n nodes ?
1 回表示 (過去 30 日間)
古いコメントを表示
i was do this
clc;
clear all;
close all;
% Link is (n-1)*node/2
node = 3;
offset = 1;
L = (node-offset)*node/2;
c =2^L;
% Generate c binary values:
r = randi([0, 1], c,L);
disp(r);
output:
0 0 1
1 0 0
1 0 0
1 0 1
1 1 0
1 0 0
0 1 0
0 0 1
but i want
0 0 0
0 0 1
0 1 0
0 1 1
1 0 0
1 0 1
1 1 0
1 1 1
please help me how to generate binary random numbers up to n in order wise
1 件のコメント
James Tursa
2021 年 3 月 15 日
Your current code generates random patterns. But what you want is not random at all ... it is an ordered list. Why do you write you want random output but then show a non-random ordered list as what you want?
採用された回答
James Tursa
2021 年 3 月 15 日
Here is how to get your stated desired output, but this is not random at all:
r = dec2bin(0:(2^L-1)) - '0';
4 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Logical についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!