Class TraceSkewKt

  • All Implemented Interfaces:

    
    public final class TraceSkewKt
    
                        
    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
    • Field Summary

      Fields 
      Modifier and Type Field Description
    • Constructor Summary

      Constructors 
      Constructor Description
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
    • Method Summary

      Modifier and Type Method Description
      final static Double trace_skew(DoubleArray trace) Computes the skewness of the trace data using Apache Commons Math.
      final static Double trace_skew(Collection<Double> trace) Computes the skewness of the trace data using Apache Commons Math.
      final static Double trace_skew(List<Double> trace) Computes the skewness of the trace data using Apache Commons Math.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

    • 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