making an array to simulate states of a paramagnet with values of -1,+1.

1 回表示 (過去 30 日間)
Tom Edwards
Tom Edwards 2019 年 10 月 12 日
回答済み: Jos (10584) 2019 年 10 月 12 日
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

採用された回答

Jos (10584)
Jos (10584) 2019 年 10 月 12 日
Create a random vector with two values and map those to -1 and 1. An easy solution (with n=10):
x = 2 * randi([0 1], 1, 10) - 1

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeThermodynamics and Heat Transfer についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by