请教, 如何产生一个取值为1​的概率为二分之一,取​值为-1的概率为二分​之一的40*50的`​随机矩阵。

如题随机矩阵的行列分别为40*50. 元素只有1和-1, 其中取1的概率为二分之一,取-1的概率为二分之一.

 Réponse acceptée

novong
novong le 14 Mai 2023

0 votes

m = ones(40,50);
m(rand(size(m))>0.5) = -1;

Plus de réponses (0)

Catégories

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

Tags

Community Treasure Hunt

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

Start Hunting!