operator<<(std::extreme_value_distribution), operator>>(std::extreme_value_distribution)
De cppreference.com
< cpp | numeric | random | extreme value distribution
![]() |
This page has been machine-translated from the English version of the wiki using Google Translate.
The translation may contain errors and awkward wording. Hover over text to see the original version. You can help to fix errors and improve the translation. For instructions click here. |
template< class CharT, class Traits, class ResultType > std::basic_ostream<CharT,Traits>& operator<<( std::basic_ostream<CharT,Traits>& ost, |
(1) | |
template< class CharT, class Traits, class ResultType > std::basic_istream<CharT,Traits>& operator>>( std::basic_istream<CharT,Traits>& ist, |
(2) | |
Realiza flujo de entrada y de salida de las operaciones en pseudo-aleatorio
1) d
distribución del número de .Original:
Performs stream input and output operations on pseudo-random number distribution
d
.The text has been machine-translated via Google Translate.
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.
Escribe una representación textual de los parámetros de la distribución y el estado interno de
2) ost
como representación textual. Las banderas de formato y carácter de relleno de ost
no cambian .Original:
Writes a textual representation of the distribution parameters and internal state to
ost
as textual representation. The formatting flags and fill character of ost
are unchanged.The text has been machine-translated via Google Translate.
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.
Restaura los parámetros de la distribución y el estado interno de los datos leídos de
ist
. Las banderas de formato de ist
no cambian. Los datos deben haber sido escrito utilizando una corriente con la misma localidad, y los parámetros CharT
Traits
plantilla, de lo contrario el comportamiento no está definido. Si la entrada se encuentra mal, ist.setstate(std::ios::failbit) se llama, que puede lanzar std::ios_base::failure. d
no se modifica en este caso .Original:
Restores the distribution parameters and internal state with data read from
ist
. The formatting flags of ist
are unchanged. The data must have been written using a stream with the same locale, CharT
and Traits
template parameters, otherwise the behavior is undefined. If bad input is encountered, ist.setstate(std::ios::failbit) is called, which may throw std::ios_base::failure. d
is unchanged in that case.The text has been machine-translated via Google Translate.
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] Parámetros
ost | - | flujo de salida para insertar los datos para
Original: output stream to insert the data to The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
ist | - | flujo de entrada para extraer los datos de
Original: input stream to extract the data from The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
d | - | números pseudo-aleatorios de distribución
Original: pseudo-random number distribution 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
1) ost
2) ist
[editar] Excepciones
1)(Ninguno)
2) Original:
(none)
The text has been machine-translated via Google Translate.
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.
puede arrojar std::ios_base::failure en la entrada bad .
Original:
may throw std::ios_base::failure on bad input.
The text has been machine-translated via Google Translate.
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.