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

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

 Respuesta aceptada

novong
novong el 14 de Mayo de 2023

0 votos

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

Más respuestas (0)

Categorías

Más información sobre 随机数生成 en Centro de ayuda y File Exchange.

Etiquetas

Preguntada:

el 14 de Mayo de 2023

Respondida:

el 14 de Mayo de 2023

Community Treasure Hunt

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

Start Hunting!