Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
for ループを実行するたびに新しい値を取得できるように、0.001 から 0.0015 の間のランダムな値を生成したいと考えています。
例えば
value = random number between 0.001 and 0.0015; for i = 1:10, for value, Calculate something... end end
誰でもその方法を教えてもらえますか?
それは簡単です、あなたはするだけです:
0.001+(rand()*(0.0015-0.001))