Pseudo-random number generation
![]() |
Esta página se ha traducido por ordenador/computador/computadora de la versión en inglés de la Wiki usando Google Translate.
La traducción puede contener errores y palabras aparatosas/incorrectas. Planea sobre el texto para ver la versión original. Puedes ayudar a corregir los errores y mejorar la traducción. Para instrucciones haz clic aquí. |
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
[editar] Motores de números aleatorios
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
Definido en el archivo de encabezado
<random> | |
(C++11) |
implementa algoritmo congruencia lineal Original: implements congruencia lineal algorithm The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (plantilla de clase) |
(C++11) |
implementa algoritmo Mersenne twister Original: implements Mersenne twister algorithm The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (plantilla de clase) |
(C++11) |
implementos resta con acarreo (a quedado Fibonacci) algoritmo Original: implements subtract with carry (a quedado Fibonacci) algorithm The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (plantilla de clase) |
[editar] Azar adaptadores número de motor
You can help to correct and verify the translation. Click here for instructions.
Definido en el archivo de encabezado
<random> | |
(C++11) |
descarta una salida de un motor de número aleatorio Original: discards some output of a random number engine The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (plantilla de clase) |
(C++11) |
los paquetes de la salida de un motor de número aleatorio en bloques de un número especificado de bits Original: packs the output of a random number engine into blocks of specified number of bits The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (plantilla de clase) |
(C++11) |
proporciona la salida de un motor de número aleatorio en orden diferente Original: delivers the output of a random number engine in different order The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (plantilla de clase) |
[editar] Predefinidas generadores de números aleatorios
You can help to correct and verify the translation. Click here for instructions.
Definido en el archivo de encabezado
<random> | |
Tipo
Original: Type The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
Definition |
minstd_rand0
|
std::linear_congruential_engine<uint_fast32_t, 16807, 0, 2147483647> |
minstd_rand
|
std::linear_congruential_engine<uint_fast32_t, 48271, 0, 2147483647> |
mt19937
|
std::mersenne_twister_engine<uint_fast32_t, 32, 624, 397, 31, 0x9908b0df, 11, |
mt19937_64
|
std::mersenne_twister_engine<uint_fast64_t, 64, 312, 156, 31, 0xb5026f5aa96619e9, 29, |
ranlux24_base
|
std::subtract_with_carry_engine<uint_fast32_t, 24, 10, 24> |
ranlux48_base
|
std::subtract_with_carry_engine<uint_fast64_t, 48, 5, 12> |
ranlux24
|
std::discard_block_engine<ranlux24_base, 223, 23> |
ranlux48
|
std::discard_block_engine<ranlux48_base, 389, 11> |
knuth_b
|
std::shuffle_order_engine<minstd_rand0, 256> |
default_random_engine
|
' Definido por la implantación
Original: implementation-defined The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
no determinista generador de números aleatorios utilizando hardware de código entropía Original: non-deterministic random number generator using hardware entropy source The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (clase) |
[editar] Distribuciones de números aleatorios
You can help to correct and verify the translation. Click here for instructions.
Definido en el archivo de encabezado
<random> | |
Original: Uniform distributions The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. | |
(C++11) |
produce valores enteros uniformemente distribuidos a través de un rango Original: produces integer values evenly distributed across a range The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (plantilla de clase) |
(C++11) |
Produce valores reales distribuidos uniformemente en un rango. (plantilla de clase) |
(C++11) |
Distribuye uniformemente los valores reales de precisión dada en el rango [ 0, 1) . (plantilla de función) |
Original: Bernoulli distributions The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. | |
(C++11) |
produce valores bool en un Bernoulli distribución . Original: produces bool values on a Bernoulli distribución. The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (clase) |
(C++11) |
produce valores enteros en un distribución binomial . Original: produces integer values on a distribución binomial. The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (plantilla de clase) |
produce valores enteros en un distribución binomial negativa . Original: produces integer values on a distribución binomial negativa. The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (plantilla de clase) | |
(C++11) |
produce valores enteros en un distribución geométrica . Original: produces integer values on a distribución geométrica. The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (plantilla de clase) |
Original: Poisson distributions The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. | |
(C++11) |
produce valores enteros en un distribución de Poisson . Original: produces integer values on a distribución de Poisson. The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (plantilla de clase) |
(C++11) |
produce valores reales en una distribución exponencial . Original: produces real values on an distribución exponencial. The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (plantilla de clase) |
(C++11) |
produce valores reales en una gamma distribución . Original: produces real values on an gamma distribución. The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (plantilla de clase) |
(C++11) |
produce valores reales en una Distribución Weibull . Original: produces real values on a Distribución Weibull. The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (plantilla de clase) |
(C++11) |
produce valores reales en una distribución de valor extremo . Original: produces real values on an distribución de valor extremo. The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (plantilla de clase) |
Original: Normal distributions The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. | |
(C++11) |
produce valores reales en una estándar normal (gaussiana) de distribución . Original: produces real values on a estándar normal (gaussiana) de distribución. The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (plantilla de clase) |
(C++11) |
produce valores reales en una distribución lognormal . Original: produces real values on a distribución lognormal. The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (plantilla de clase) |
(C++11) |
produce valores reales en una chi-cuadrado de distribución . Original: produces real values on a chi-cuadrado de distribución. The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (plantilla de clase) |
(C++11) |
produce valores reales en una Distribución de Cauchy . Original: produces real values on a Distribución de Cauchy. The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (plantilla de clase) |
(C++11) |
produce valores reales en una Fisher F-distribución . Original: produces real values on a Fisher F-distribución. The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (plantilla de clase) |
(C++11) |
produce valores reales en una La t de Student distribución . Original: produces real values on a La t de Student distribución. The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (plantilla de clase) |
Original: Sampling distributions The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. | |
(C++11) |
produce enteros aleatorios de una distribución discreta . Original: produces random integers on a discrete distribution. The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (plantilla de clase) |
produce valores reales distribuidos en subintervalos constantes . Original: produces real values distributed on constant subintervals. The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (plantilla de clase) | |
produce valores reales distribuidos en subintervalos definidos . Original: produces real values distributed on defined subintervals. The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (plantilla de clase) |
[editar] Predefinidas generadores de semillas de secuencia
Definido en el archivo de encabezado
<random> | |
(C++11) |
de uso general, eliminando el sesgo revueltos generador de secuencias de semillas Original: general-purpose bias-eliminating scrambled seed sequence generator The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (clase) |
[editar] C biblioteca
Definido en el archivo de encabezado
<cstdlib> | |
Genera un número pseudoaleatorio. (función) | |
Inicializa un generador de números pseudoaleatorios. (función) | |
El valor máximo posible generado por std::rand. (constante de macro) |