How can I randomly generate data pairs?

Réponses (1)

Prasanth Sunkara
Prasanth Sunkara le 16 Fév 2018

0 votes

Hi Yusha, There are multiple ways to do that. One way is using randi to generate each column with the appropriate constraints and concatenate them later as shown below:
z=randi([0 4],1000,1);
x=randi([0 1],1000,1);
randomPairs = [z x];
Let me know if this helps.
-Prasanth

Catégories

En savoir plus sur 随机数生成 dans Centre d'aide et File Exchange

Community Treasure Hunt

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

Start Hunting!