How to make operator for random matrix(matlab command is randn) ? please help me
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
How to make operator for random matrix(matlab command is randn) ? please help me
0 Commenti
Risposta accettata
Star Strider
il 4 Mag 2014
Modificato: Star Strider
il 4 Mag 2014
If you want to create normally-distributed random variables with a standard deviation of s and a mean of m with randn, this will work:
nrmrnd = @(m,s) m + s*randn;
or if you want a row r by column c matrix of them:
nrmrnd = @(m,s,r,c) m + s*randn(r,c);
4 Commenti
Star Strider
il 4 Mag 2014
This function should work:
xrndn = @(x) randn(length(x))*x(:);
Call it as:
y = xrndn(x);
for any vector x.
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!