VOOZH about

URL: https://www.geeksforgeeks.org/cpp/valarray-exp-function-in-c/

⇱ valarray exp() function in C++ - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

valarray exp() function in C++

Last Updated : 24 Oct, 2018
The exp() function is defined in valarray header file. This function is used to calculate e raised to the power equal to the value of the element in valarray. Syntax:
exp(varr);
Parameter: This function takes a mandatory parameter varr which represents valarray. Returns: This function returns a valarray containing the exponential values of all the elements. Below programs illustrate the above function: Example 1:-
Output:
The new valarray with manipulated values is : 
2.71828 7.38906 20.0855 54.5982 148.413
Example 2:-
Output:
The new valarray with manipulated values is : 
0.367879 1 20.0855 1 0.00673795
Comment
Article Tags: