generating a random variable with a given mean and matrix
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
fafz1203
el 15 de Oct. de 2016
Comentada: Diego Jaramillo
el 16 de Abr. de 2020
can any one tell me how to generate a NORMAL DISTRIBUTION random variable X = N(mu,A), where mu is the mean (mu = 0, 0 mean) and A is a p*p IDENTITY MATRIX. Please ask me if the question is unclear. Thanks
Respuesta aceptada
Image Analyst
el 15 de Oct. de 2016
Like this?
numRows = size(A, 1);
A(logical(eye(numRows))) = randn(1, numRows)
8 comentarios
Image Analyst
el 15 de Oct. de 2016
I don't believe you can do that and have the random variable be random. If it's random, you won't have A=eye(10) for the covariance matrix.
Más respuestas (0)
Ver también
Categorías
Más información sobre Random Number Generation en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!