La función exp() se define en el archivo de encabezado valarray . Esta función se utiliza para calcular e elevado a la potencia igual al valor del elemento en valarray.
Sintaxis:
exp(varr);
Parámetro: esta función toma un parámetro obligatorio varr que representa valarray.
Devoluciones: Esta función devuelve un valarray que contiene los valores exponenciales de todos los elementos.
Los siguientes programas ilustran la función anterior:
Ejemplo 1:-
// C++ program to demonstrate // example of exp() function. #include <bits/stdc++.h> using namespace std; int main() { // Initializing valarray valarray<double> varr = { 1, 2, 3, 4, 5 }; // Declaring new valarray valarray<double> varr1; // use of exp() function varr1 = exp(varr); // Displaying new elements value cout << "The new valarray with" << " manipulated values is : " << endl; for (double& x : varr1) { cout << x << " "; } cout << endl; return 0; }
Producción:
The new valarray with manipulated values is : 2.71828 7.38906 20.0855 54.5982 148.413
Ejemplo 2:-
// C++ program to demonstrate // example of exp() function. #include <bits/stdc++.h> using namespace std; int main() { // Initializing valarray valarray<double> varr = { -1, 0, 3, 0, -5 }; // Declaring new valarray valarray<double> varr1; // use of exp() function varr1 = exp(varr); // Displaying new elements value cout << "The new valarray with" << " manipulated values is : " << endl; for (double& x : varr1) { cout << x << " "; } cout << endl; return 0; }
Producción:
The new valarray with manipulated values is : 0.367879 1 20.0855 1 0.00673795
Publicación traducida automáticamente
Artículo escrito por bansal_rtk_ y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA