태그>난수(총 15개의 글)
'난수' 관련 최근글
-
- 뇌 속에 난수 발생기가 있을까?

-
이덕하의 진화 심리학 by 이덕하|2011/10/02 07:31
However, in an interview given longafter Turing’s death, Max Newman stated that Turing ‘had a deep-seatedconviction that the real brain has a “roulette wheel” somewhere in it.’ (『The EssentialTuring(Copeland 편집)』, 4..
- 뇌 속에 난수 발생기가 있을까?
-
- 북한의 난수 방송

-
다림질의 달인에게 다린 셔츠는 달리기 불편할 뿐이야 by LosniJ|2011/02/12 13:41
2870号 電文 組数12組 2870호 전문 조수12조 695 49 004 29 089 56 202 07 413 87 353 01 177 46 617 42 327 74 416 07 740 27 139 02 (69549 00429 08956 20207 41387 35301 17746 61742 32774 41607 74027 13902) 저기서 2870호 전문 조수12조 라는 건 저 난수방송을 수신해야 할 ..
- 북한의 난수 방송
-
-
- 진정한 난수발생기

-
nØthing special by 타임버드|2009/09/23 14:42
만화를 올린 김에 하나 더. 주사위를 직접 던져 구한 난수인데, 확실한 것이겠죠.ㅋㅋ
- 진정한 난수발생기
-
- [C#] 정규분포(Gauss 분포) 난수 발생

-
hazelstyle.egloos.com by 헤이즐넛|2009/07/16 09:25
public class CGauss { Random rnd; double m, s; // 평균, 표준편차 public CGauss(Random rnd, double m, double s) // 클래스 생성자 { this.rnd = rnd; this.m = m; this.s = s; } // 평균이 m, 표준편차가 s 인 정규분포함수의 난수 발생 public..
- [C#] 정규분포(Gauss 분포) 난수 발생
-
-
- Using Excel to simulate standard random normal variable

-
nØthing special by 타임버드|2008/06/27 11:44
엑셀을 가지고 표준정규분포를 따르는 난수를 얻는 방법은 =NORMINV(RAND(), 0, 1)입니다.
- Using Excel to simulate standard random normal variable
-
- [C] 난수 발생기

-
낮엔 해처럼 밤엔 달처럼 by 낮해밤달|2008/04/07 17:32
srand()? rand()?가 어떤 역활을 하나요? 안녕하세요. huni4279입니다. int num = 0; srand(time(NULL));num = rand() % 10; srand() 함수와 rand() 함수가 어떤 역활을 하는지 알고 싶습니다.그리고 num = rand() % 10; 가 무슨 뜻인지도 알려 주세요. ..
- [C] 난수 발생기
-
- SICP Exercise 연습문제 3.6

-
NoSyu의 주저리 주저리 by |2008/03/08 19:22
google_ad_client = "pub-7048624575756403";google_ad_slot = "4952969789";google_ad_width = 300;google_ad_height = 250;google_ad_client = "pub-7048624575756403";google_ad_slot = "495296978
- SICP Exercise 연습문제 3.6
-
- GaussianRnd

-
nØthing special by 타임버드|2008/02/25 16:04
#include #include #include #include using namespace std; class GaussianRnd { public: GaussianRnd() : mu(0.0), sigma(1.0) {} GaussianRnd(const double mu_, const double sigma_) : mu(mu_), sigma(sigma_)..
- GaussianRnd
-
- 1 ~ 10 사이의 난수 발생

-
타락천사님의 이글루 by 타락천사|2008/01/21 15:10
System.out.println((int) (Math.random() * 11));
- 1 ~ 10 사이의 난수 발생

