Random Gaussian number generators
조회 수: 2 (최근 30일)
이전 댓글 표시
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?
댓글 수: 0
답변 (1개)
KSSV
2023년 9월 12일
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
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Statistics and Machine Learning Toolbox에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!