making an array to simulate states of a paramagnet with values of -1,+1.
이전 댓글 표시
I want to make an array containing only the values 1 and -1. It should be randomly generated so as to get a random number of occurences of both values.
I made the following but I feel like its way too complicated. Is there a simpler way? thanks
x = randi ([-1,1],1,n) ;
for k = 1 : n
if x (k) == 0
r = rand ;
if r > 0.5
x(k) = 1 ;
else
x(k) = -1;
end
end
end
채택된 답변
추가 답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 Thermodynamics and Heat Transfer에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!