标签: matlab probability
我没有通讯工具箱,也不想付费,因此我无法使用randsrc功能。 0出现的概率应为0.2,1的出现概率为0.8。
randsrc
0
1
x = rand(1 100)
答案 0 :(得分:2)
A = rand(1,100); % uniform distributed between 0 and 1 B = A>=0.2; % Makes the lowest 20% values 0, the rest 1