public class DoubleUlp extends EvalFunc<java.lang.Double>
Math.ulp(double).
Given a single data atom it Returns the size of an ulp
of the argument.
value - Double.Double
register math.jar;
A = load 'mydata' using PigStorage() as ( float1 );
B = foreach A generate float1, math.ULP(float1);
Math.ulp(double),
EvalFunc.SchemaTypelog, pigLogger, reporter, returnType| Constructor and Description |
|---|
DoubleUlp() |
| Modifier and Type | Method and Description |
|---|---|
java.lang.Double |
exec(Tuple input)
java level API
|
Schema |
outputSchema(Schema input)
Report the schema of the output of this UDF.
|
allowCompileTimeCalculation, finish, getArgToFuncMapping, getCacheFiles, getInputSchema, getLogger, getPigLogger, getReporter, getReturnType, getSchemaName, getSchemaType, getShipFiles, isAsynchronous, progress, setInputSchema, setPigLogger, setReporter, setUDFContextSignature, warnpublic java.lang.Double exec(Tuple input) throws java.io.IOException
public Schema outputSchema(Schema input)
EvalFunc
The default implementation interprets the OutputSchema annotation,
if one is present. Otherwise, it returns null (no known output schema).
outputSchema in class EvalFunc<java.lang.Double>input - Schema of the inputCopyright © 2007-2012 The Apache Software Foundation