std::cosh<div class="t-tr-text">(Std :: valarray)<div class="t-tr-dropdown"><div><div><div class="t-tr-dropdown-arrow-border"></div><div class="t-tr-dropdown-arrow"></div><div class="t-tr-dropdown-h">Original:</div><div class="t-tr-dropdown-orig">(std::valarray)</div><div class="t-tr-dropdown-notes">The text has been machine-translated via [http://translate.google.com Google Translate].<br/> You can help to correct and verify the translation. Click [http://en.cppreference.com/w/Cppreference:MachineTranslations here] for instructions.</div></div></div></div></div>
De cppreference.com
[] |
Esta pgina se ha traducido por ordenador/computador/computadora de la versin en ingls de la Wiki usando Google Translate.
La traduccin puede contener errores y palabras aparatosas/incorrectas. Planea sobre el texto para ver la versin original. Puedes ayudar a corregir los errores y mejorar la traduccin. Para instrucciones haz clic aqu. |
| Definido en el archivo de encabezado <valarray>
|
||
template< class T >
valarray<T> cosh( const valarray<T>& va );
|
||
Para cada elemento de
va calcula coseno hiperblico del valor del elemento .Original:
For each element in
va computes hyperbolic cosine of the value of the element.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.
Parmetros
| va | - | matriz de valores para aplicar la operacin a
Original: value array to apply the operation to The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
Valor de retorno
Valor matriz que contiene el coseno hiperblico de los valores en
va .Original:
Value array containing hyperbolic cosine of the values in
va.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.
Notas
Funcin Cualificado (
cosh) se utiliza para realizar el clculo. Si tal funcin no est disponible, std::cosh se utiliza debido a bsqueda argumento dependiente .Original:
Unqualified function (
cosh) is used to perform the computation. If such function is not available, std::cosh is used due to argument dependent lookup.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.
La funcin se puede implementar con el tipo de retorno diferente de std::valarray. En este caso, el tipo de reemplazo tiene las siguientes propiedades:
Original:
The function can be implemented with the return type different from std::valarray. In this case, the replacement type has the following properties:
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.
- Todas las funciones miembro de
conststd::valarray se proporcionan .Original:Allconstmember functions of std::valarray are provided.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions. - std::valarray,
std::slice_array,std::gslice_array,std::mask_arraystd::indirect_arrayy puede ser construida a partir del tipo de reemplazo .Original:std::valarray,std::slice_array,std::gslice_array,std::mask_arrayandstd::indirect_arraycan be constructed from the replacement type.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions. - Todas las funciones que aceptan un argumento de tipo
const std::valarray&tambin deben aceptar el tipo de reemplazo .Original:All functions accepting a arguments of typeconst std::valarray&should also accept the replacement type.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions. - Todas las funciones que aceptan dos argumentos de tipo
const std::valarray&debe aceptar todas las combinaciones deconst std::valarray&y el tipo de reemplazo .Original:All functions accepting two arguments of typeconst std::valarray&should accept every combination ofconst std::valarray&and the replacement type.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Posible implementacin
template<class T>
valarray<T> cosh(const valarray<T>& va)
{
valarray<T> other = va;
for (T &i : other) {
i = cosh(i);
}
}
|
Ejemplo
| Esta seccin est incompleta Razn: sin ejemplo |
Ver tambin
(C++11)(C++11) |
Calcula el coseno hiperblico (\({\small\cosh{x} }\)cosh(x)) (funcin) |