Espacios de nombres
Variantes
Acciones

std::linear_congruential_engine

De cppreference.com
< cpp‎ | numeric‎ | random
 
 
 
Generación de números pseudoaleatorios
Motores y adaptadores de motor
Original:
Engines and engine adaptors
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
linear_congruential_engine
(C++11)
Generadores
Original:
Generators
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Distribuciones
Original:
Distributions
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Distribuciones uniformes
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.
Bernoulli distribuciones
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.
Poisson distribuciones
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.
Distribuciones normales
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.
Distribuciones de muestreo
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.
Secuencias de semillas
Original:
Seed Sequences
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
(C++11)
C biblioteca
Original:
C library
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
 
std::linear_congruential_engine
Las funciones miembro
Original:
Member functions
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Generación
Original:
Generation
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Características
Original:
Characteristics
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Terceros funciones
Original:
Non-member functions
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
 
Definido en el archivo de encabezado <random>
template<

    class UIntType,
    UIntType a,
    UIntType c,
    UIntType m

> class linear_congruential_engine;
(desde C++11)
A linear_congruential_engine produce sin firmar números pseudoaleatorios enteros. El estado de un LCG es de tamaño 1 y consta de un único entero .
Original:
A linear_congruential_engine produces unsigned integer pseudorandom numbers. The state of a LCG is of size 1 and consists of a single integer.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
El algoritmo de transición de la función de LCG es x
i+1
← (ax
i
+c) mod m
.
Original:
The transition algorithm of the LCG function is x
i+1
← (ax
i
+c) mod m
.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

Contenido

[editar] Tipos de miembros

Miembro de tipo
Original:
Member type
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Definition
result_type
El tipo integral generada por el motor. Los resultados son indefinido si esto no es un tipo entero sin signo .
Original:
The integral type generated by the engine. Results are undefined if this is not an unsigned integral type.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

[editar] Las funciones miembro

Construcción y Siembra
Original:
Construction and Seeding
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
construye el motor
Original:
constructs the engine
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(función miembro pública) [editar]
establece el estado actual del motor
Original:
sets the current state of the engine
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(función miembro pública) [editar]
Generación
Original:
Generation
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
avanza el estado del motor de generación aleatorio y devuelve el valor generado
(función miembro pública) [editar]
avances del estado del motor en una cantidad especificada
Original:
advances the engine's state by a specified amount
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(función miembro pública) [editar]
Características
Original:
Characteristics
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
[estático]
se obtiene el valor más pequeño posible en el rango de salida
Original:
gets the smallest possible value in the output range
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(función miembro estática pública) [editar]
[estático]
gets the largest possible value in the output range
(función miembro estática pública) [editar]

[editar] Terceros funciones

compara los estados internos de dos motores de números pseudo-aleatorios
(función) [editar]
realiza flujo de entrada y de salida en el motor de números pseudo-aleatorios
(función) [editar]

[editar] Objetos miembros

constexpr UIntType multiplier
[estático]
el término multiplicador (a) .
Original:
the multiplier term (a).
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(constante miembro pública estática)
constexpr UIntType increment
[estático]
el plazo de incremento (c) .
Original:
the increment term (c).
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(constante miembro pública estática)
constexpr UIntType modulus
[estático]
el término módulo (m) .
Original:
the modulus term (m).
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(constante miembro pública estática)
constexpr UIntType default_seed
[estático]
la semilla por defecto (1) .
Original:
the default seed (1).
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(constante miembro pública estática)