math.ASIN implements a binding to the Java function {@link java.lang.Math#asin(double) Math.asin(double)} for computing thearc sine of value of the argument. The returned value will be a double which is the arc sine of the value of input.
Parameters:
value - DataAtom [double].
Return Value:
DataAtom [double] arc sine of the value of input
Return Schema:
asin_inputSchema
Example:
register math.jar; A = load 'mydata' using PigStorage() as ( float1 ); B = foreach A generate float1, math.ASIN(float1);
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.