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

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

 Akzeptierte Antwort

novong
novong am 14 Mai 2023

0 Stimmen

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

Weitere Antworten (0)

Kategorien

Mehr zu 随机数生成 finden Sie in Hilfe-Center und File Exchange

Tags

Gefragt:

am 14 Mai 2023

Beantwortet:

am 14 Mai 2023

Community Treasure Hunt

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

Start Hunting!