Azzera filtri
Azzera filtri

Random Gaussian number generators

4 visualizzazioni (ultimi 30 giorni)
Zahid
Zahid il 12 Set 2023
Risposto: KSSV il 12 Set 2023
I am introducing disorder in a 3D lattice which has matrix of L^3 into L^3.
for box disorder "function disorder = generate_disorder(L, W)
% Generate a disordered sequence of on-site energies (diagonal elements of the matrix)
disorder = W * (rand(L, L, L) - 0.5);
end"
I am getting the result.
I want to modify it for generating disorder from gaussian distribution.
How to modify this code?

Risposte (1)

KSSV
KSSV il 12 Set 2023
REad about randn
function disorder = generate_disorder(L, W)
% Generate a disordered sequence of on-site energies (diagonal elements of the matrix)
disorder = W * (randn(L, L, L) - 0.5);
end

Categorie

Scopri di più su Performance and Memory 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!

Translated by