Conceptos C++: RandomNumberDistribution - cppreference.com
Espacios de nombres
Variantes

Conceptos C++: RandomNumberDistribution

De cppreference.com
 
 
C + + conceptos
Básica
Original:
Basic
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Biblioteca-Wide
Original:
Library-Wide
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Container
Original:
Container
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Elementos contenedores
Original:
Container Elements
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Iterator
Original:
Iterator
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Números aleatorios
Original:
Random Numbers
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Concurrencia
Original:
Concurrency
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++11)
(C++11)
Otros
Original:
Other
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
 
A RandomNumberDistribution es un objeto de función que devuelve números aleatorios según una función de densidad de probabilidad p(x) o un distribución de probabilidad discreta P(x
i
)
.
Original:
A RandomNumberDistribution is a function object returning random numbers according to a función de densidad de probabilidad p(x) or a distribución de probabilidad discreta P(x
i
)
.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

Requisitos

  • D es una clase que cumple los requisitos RandomNumberDistribution. Asimismo, deberán cumplir los requisitos y CopyConstructible CopyAssignable .
    Original:
    D is a class meeting the RandomNumberDistribution requirements. It shall also satisfy the CopyConstructible and CopyAssignable requirements.
    The text has been machine-translated via Google Translate.
    You can help to correct and verify the translation. Click here for instructions.
  • T es la result_type asociado .
    Original:
    T is the associated result_type.
    The text has been machine-translated via Google Translate.
    You can help to correct and verify the translation. Click here for instructions.
  • P es la param_type asociado. Se deberán cumplir las CopyConstructible, CopyAssignable y requisitos EqualityComparable .
    Original:
    P is the associated param_type. It shall satisfy the CopyConstructible, CopyAssignable, and EqualityComparable requirements.
    The text has been machine-translated via Google Translate.
    You can help to correct and verify the translation. Click here for instructions.
  • d es un objeto de D y x, y son objetos potencialmente const de D .
    Original:
    d is an object of D and x,y are potentially const objects of D.
    The text has been machine-translated via Google Translate.
    You can help to correct and verify the translation. Click here for instructions.
  • p es un valor constante posiblemente de P .
    Original:
    p is a possibly constant value of P.
    The text has been machine-translated via Google Translate.
    You can help to correct and verify the translation. Click here for instructions.
  • g, g1, g2 se lvalues ​​satisfacer el concepto UniformRandomNumberGenerator .
    Original:
    g,g1,g2 are lvalues meeting the UniformRandomNumberGenerator concept.
    The text has been machine-translated via Google Translate.
    You can help to correct and verify the translation. Click here for instructions.
  • os es un valor-de std::basic_ostream .
    Original:
    os is an lvalue of std::basic_ostream.
    The text has been machine-translated via Google Translate.
    You can help to correct and verify the translation. Click here for instructions.
  • is es un valor-de std::basic_istream .
    Original:
    is is an lvalue of std::basic_istream.
    The text has been machine-translated via Google Translate.
    You can help to correct and verify the translation. Click here for instructions.