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
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!