리눅스 랜덤함수는 무엇이 있나요?

cs010101의 이미지

0부터 1500까지의 float 값중에서 랜덤값을 추출할려고 하는데요.
리눅스에서는 어떤 함수가 있나요? 그리고 간과하기 쉬운 점도 아시면 조언해주세요.

감사합니다~~~

feanor의 이미지

C 프로그래밍 언어의 경우에는 C 표준 라이브러리 헤더 stdlib.h에 rand 함수와 srand 함수가 정의되어 있습니다. C 표준이므로 운영체제와는 무관합니다.

klara의 이미지

뭐 간과하기 쉽다기보다는 주의해야 할점은 표준함수는 thread-safe 하지 않다는거정도...

lacovnk의 이미지

조인시 위키 - /dev/random 을 이용한 랜덤값 생성

http://www.joinc.co.kr/modules/moniwiki/wiki.php/article/random

오호라의 이미지

> echo $RANDOM

> man seed48

Hello World.

cppig1995의 이미지

표준 C 함수인 rand를 사용하는 게 좋겠죠.
방법(초기화): srand(time(NULL));
방법: (float)((double)rand() / ((double)RAND_MAX + 1) * 1500)
http://cinsk.org/cfaqs/html/node15.html#SECTION001540000000000000000
- 계산 중간의 double은 float로 고쳐도 됩니다.

주의: 멀티스레드 프로그램 작성시 유의해야 합니다. 표준 라이브러리 구현 대부분은 thread-unsafe 합니다.
--
돼지군 작업실 FX: SetupFX, 4word 64bit OS, SMPlayer 한국어 번역, ...
대전월평중 2 / Ubuntu Hardy / 070) 7594-3258 / 서명 변경일 2008/4/5

Real programmers /* don't */ comment their code.
If it was hard to write, it should be /* hard to */ read.

modestcode의 이미지

(float)((double)rand() / ((double)RAND_MAX + 1) * 1500)

'Numerical recipes in C'라는 책에서 바로 이런 코드 사용을 권하지 않습니다. 방금 man을 확인해 보니 그 내용을 옮겨 놓았네요. high-order bits가 더 랜덤하기 때문에,
1 + (int) (1500.0 * rand() / (RAND_MAX + 1.0));

처럼 사용해야 한다고 나와있습니다.
Quote:

주의: 멀티스레드 프로그램 작성시 유의해야 합니다. 표준 라이브러리 구현 대부분은 thread-unsafe 합니다.

thread-safe한 rand_r()가 있습니다. 그리고 drand48_r, erand48_r, lrand48_r, nrand48_r, mrand48_r, jrand48_r, srand48_r, seed48_r, lcong48_r 처럼 많습니다. 표준 입출력 함수도 안전하고, thread-safe한 *_r()류의 함수가 없어서 못하는 작업이 보통 어떤 것이 있는지 궁금하네요.
추가: 참고로 뒤에 열거한 rand관련 함수는 POSIX는 아닙니다.
cppig1995의 이미지

int로의 형변환을 빼고 보면, 0 <= 결과 < MAX_RESULT의 난수를 생성하기 위한
위의 수식은 rand() / (RAND_MAX + 1.0) * MAX_RESULT이고,
아래의 수식은 1 + MAX_RESULT * rand() / (RAND_MAX + 1.0)입니다.
두 수식 모두 rand() % MAX_RESULT보다는 우수하지만,
두 수식 간에는 차이가 없는 것 같은데요.
누가 설명해 주세요. :p

Real programmers /* don't */ comment their code.
If it was hard to write, it should be /* hard to */ read.

winner의 이미지

좀더 정확히 이야기해서 임수서룬뫼님의 글이 질문에 정확하죠.

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.