asinhf(): This function is defined in the file math.h. It returns the inverse hyperbolic sine of the given argument (arg). It takes one argument whose value can be any value i.e. negative, positive, or zero. It returns the value of inverse hyperbolic sine of that given value.
Parameters: One parameter is required for this function. A parameter is a floating-point number.
__arg: The value whose inverse hyperbolic sine value is to be determined.
Syntax:
asinhf(__arg)
For Example:
asinhf(0.45) = > It returns 0.43605.
Approach
C++
#include <bits/stdc++.h>using namespace std;int main(){float x = 0.45;cout << asinhf(x) << "\n";return 0;}
No comments:
Post a Comment