my question is that
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
a=randn(400); generates 400*400 matrix in matlab,
my question is that this function generates different mean and variance matrix at every time when i run the code. so i require fix mean and variance matrix at every time when i run the code. (not a nearest,every time exact and fixed value)
0 Commenti
Risposta accettata
Azzi Abdelmalek
il 27 Dic 2012
Modificato: Azzi Abdelmalek
il 27 Dic 2012
nm=[400,400]
v=0.5; %variance
m=2; % mean
out=m+sqrt(v)*randn(nm)
5 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Logical in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!