Package jline.api.trace
Class TraceSkewKt
-
- All Implemented Interfaces:
public final class TraceSkewKt
-
-
Method Summary
Modifier and Type Method Description final static Doubletrace_skew(DoubleArray trace)Computes the skewness of the trace data using Apache Commons Math. final static Doubletrace_skew(Collection<Double> trace)Computes the skewness of the trace data using Apache Commons Math. final static Doubletrace_skew(List<Double> trace)Computes the skewness of the trace data using Apache Commons Math. -
-
Method Detail
-
trace_skew
final static Double trace_skew(DoubleArray trace)
Computes the skewness of the trace data using Apache Commons Math. This uses the same bias as MATLAB when calling skewness(data,0).
- Parameters:
trace- the array containing the trace data- Returns:
the skewness value of the trace data
-
trace_skew
final static Double trace_skew(Collection<Double> trace)
Computes the skewness of the trace data using Apache Commons Math. This uses the same bias as MATLAB when calling skewness(data,0).
- Parameters:
trace- the collection containing the trace data- Returns:
the skewness value of the trace data
-
trace_skew
final static Double trace_skew(List<Double> trace)
Computes the skewness of the trace data using Apache Commons Math. This uses the same bias as MATLAB when calling skewness(data,0).
- Parameters:
trace- the list containing the trace data- Returns:
the skewness value of the trace data
-
-
-
-