일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
- ControlSend
- MouseClick
- SetEnv
- API
- SetMouseDelay
- autohotkey
- StringGetPos
- EnvAdd
- ControlGetText
- IfInString
- EnvDiv
- SetKeyDelay
- IF (식)
- SetTitleMatchMode
- Var:=식
- DetectHiddenWindows
- Blocks
- IfWinExist
- 식의 설명
- Threads
- Menu
- 배열
- EnvMult
- SetControlDelay
- EnvSet
- 식
- EnvSub
- if(식)
- 함수
- if
- Today
- Total
ㄴrㅎnㅂrㄹrㄱi
Random 의사 난수를 생성 본문
Random
의사 난수를 생성
Random, OutputVar [, Min, Max] Random,,NewSeed
Parameters
인수명 | 설명 |
---|---|
OutputVar | 결과의 출력처의 변수명. 부동 소수점수(실수)의 표현 형식은 SetFormat커멘드로 설정할 수 있다. |
Min | 결과의 최소치. 생략시는 「0」 부의 값도 가능. 정수의 경우, 「-2147483648」까지 가능. 소수의 경우, 하한은 없다. |
Max | 결과의 최대치. 생략시는 「2147483648」 정수의 경우, 「2147483648」까지 가능. 소수의 경우, 하한은 없다. |
NewSeed | 제1인수를 생략 해 제2인수에 수치를 지정했을 경우, 난수 생성에 사용되는 배정을 설정할 수 있다. 같은 배정을 설정해 똑같이Random커멘드를 실행했을 경우, 얻을 수 있는 값은 반드시 같게 된다. 예를 들면, 이하의 스크립트는, 몇 번 실행해도 반드시 같은 표시가 된다. Random,,1000 Loop,10{ Random,r,0,10000 s=%s%%r%`n } MsgBox,%s%스크립트 개시시는,100나노초단위의 현재 시각을 나타내는 수치가 배정에 사용된다. |
Remarks
Min(와)과Max그리고 설정한 수의 사이에 있는 랜덤인 수치를OutputVar변수에 격납한다.
Max인가Min에 소수점을 포함한 수치가 지정되었을 경우, 결과는 SetFormat커멘드로 설정한 포맷의 소수가 된다.
그 이외의 경우는, 정수가 된다.
Related
Example(s)
Random, rand, 1, 10
Random, rand, 0.0, 1.0
Comments based on the original source
This function uses the Mersenne Twister random number generator, MT19937, written by Takuji Nishimura and Makoto Matsumoto, Shawn Cokus, Matthe Bellew and Isaku Wada.
The Mersenne Twister is an algorithm for generating random numbers. It was designed with consideration of the flaws in various other generators. The period, 219937-1, and the order of equidistribution, 623 dimensions, are far greater. The generator is also fast; it avoids multiplication and division, and it benefits from caches and pipelines. For more information see the inventors' web page at http://www.math.keio.ac.jp/~matumoto/emt.html
Copyright (C) 1997 - 2002, Makoto Matsumoto and Takuji Nishimura, All rights reserved.
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
- Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
- Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
- The names of its contributors may not be used to endorse or promote products derived from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Do NOT use for CRYPTOGRAPHY without securely hashing several returned values together, otherwise the generator state can be learned after reading 624 consecutive values.
When you use this, send an email to: matumoto@math.keio.ac.jp with an appropriate reference to your work. It would be nice to CC: rjwagner@writeme.com and Cokus@math.washington.edu when you write.
This above has been already been done for AutoHotkey, but if you use the Random command in a publicly distributed application, consider sending an e-mail to the above people to thank them for their efforts and generosity.
'AUTOHOTKEY > 레퍼런스' 카테고리의 다른 글
IfWinActive / IfWinNotActive 조건에 일치하는 윈도우가 존재할지로 분기 (0) | 2007.11.05 |
---|---|
RegDelete 레지스트리의 키나 값을 삭제한다 (0) | 2007.11.05 |
Progress / SplashImage progress bar나 스플래쉬 이미지의 윈도우를 표시·갱신한다 (0) | 2007.11.05 |
Process 특정의 프로세스가 존재하는지 체크하거나 우선도를 변경하거나 종료시키거나 한다 (0) | 2007.11.05 |
PostMessage / SendMessage 윈도우나GUI컨트롤에 윈도우 메세지를 송신한다.(SendMessage(은)는 응답을 기다려 결과를 취득할 수 있다) (2) | 2007.11.05 |