Espaços nominais
Variantes
Acções

std::independent_bits_engine::seed

Da cppreference.com

 
 
Biblioteca numéricos
Funções matemáticas comuns
De ponto flutuante ambiente
Números complexos
Matrizes numéricas
Pseudo-aleatório de geração de números
Tempo de compilação aritmética racional(C++11)
Genéricos operações numéricas
Original:
Generic numeric operations
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
(C++11)
 
Pseudo-aleatório de geração de números
Motores e 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.
Geradores
Original:
Generators
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Distribuições
Original:
Distributions
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Distribuições 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.
Distribuições de Bernoulli
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.
Distribuições de Poisson
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.
Distribuições normais
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.
Distribuições de amostragem
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.
Seqüências de sementes
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::independent_bits_engine
Funções de membro
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.
independent_bits_engine::independent_bits_engine
independent_bits_engine::seed
independent_bits_engine::base
Geração
Original:
Generation
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
independent_bits_engine::operator()
independent_bits_engine::discard
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.
independent_bits_engine::min
independent_bits_engine::max
Não-membros funções
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.
 
void seed();
(1) (desde C++11)
void seed( result_type value );
(2) (desde C++11)
template<class Sseq >
void seed( Sseq& seq );
(3) (desde C++11)
Reinicializa o estado interno do mecanismo subjacente usando um novo valor de semente.
Original:
Reinitializes the internal state of the underlying engine using a new seed value.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
1)
Sementes motor de base, com o valor inicial padrão. Efetivamente chama e.seed(), onde e é o mecanismo subjacente.
Original:
Seeds the underlying engine with the default seed value. Effectively calls e.seed(), where e is the underlying engine.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
2)
Sementes motor subjacente com o s valor da semente. Efetivamente chama e.seed(value), onde e é o mecanismo subjacente.
Original:
Seeds the underlying engine with the seed value s. Effectively calls e.seed(value), where e is the underlying engine.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
3)
Sementes motor subjacente com o seq seqüência semente. Efetivamente chama e.seed(seq), onde e é o mecanismo subjacente.
Original:
Seeds the underlying engine with the seed sequence seq. Effectively calls e.seed(seq), where e is the underlying engine.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

[editar]Parâmetros

value -
semente valor a ser usado na inicialização do estado interno do mecanismo subjacente
Original:
seed value to use in the initialization of the internal state of the underlying engine
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
seq -
sequência de semente a ser usado na inicialização do estado interno do mecanismo subjacente
Original:
seed sequence to use in the initialization of the internal state of the underlying engine
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

[editar]Valor de retorno

(Nenhum)
Original:
(none)
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

[editar]Exceções

(Nenhum)
Original:
(none)
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
close