ASIN(3) BSD Library Functions Manual ASIN(3)NAME
asin, asinf -- arc sine function
LIBRARY
Math Library (libm, -lm)
SYNOPSIS
#include <math.h>
double
asin(double x);
float
asinf(float x);
DESCRIPTION
The asin() and asinf() functions compute the principal value of the arc sine of x in the range [-pi/2, +pi/2].
RETURN VALUES
If |x|>1, asin(x) and asinf(x) return NaN and set the global variable errno to EDOM.
SEE ALSO acos(3), atan(3), atan2(3), cos(3), cosh(3), math(3), sin(3), sinh(3), tan(3), tanh(3)STANDARDS
The asin() function conforms to ANSI X3.159-1989 (``ANSI C89'').
BSD May 2, 1991 BSD
Hi All,
I need to parse some statistic data from the "measInfo" -eg. 25250000 (as highlighted) and return the result into line by line, and erasing all other unnecessary info/tag.
Thought of starting with grep "measInfoID="25250000" but this only returns 1 line. How do I get all the output... (8 Replies)
hi all,
I am new to linux and C++ programming so I'm posting in hope of some help.
I am trying to install a C++ library using boost and cmake but I keep gettin this error in the terminal:
CMake Error at /usr/share/cmake/Modules/FindBoost.cmake:1199 (message):
Unable to find the... (9 Replies)
I have a .xml file that looks something like this :
<measInfo>
.........
string1
.........
</measInfo>
<measInfo>
......
string2
........
</measInfo>
I want to extract only the 'chunk of file' from '<measInfo>' to '</measInfo>' containing string1 (or a certain string that I... (13 Replies)
Hi Community,
Would love to get some quick help on below requirement.
I am trying to process mpstat output from multiple blades of my server
I would like to assign this the output to an array and then use it for post processing. How can I use a two dimensional array and assign these value
... (23 Replies)