Computes $(LUCKY Discrete Signal Entropy) of input range range.
const ubyte[] p1 = [ 0, 1, 0, 1 ]; assert(p1.signalEntropy == 1); const ubyte[] p2 = [ 0, 1, 2, 3 ]; assert(p2.signalEntropy == 2); const ubyte[] p3 = [ 0, 255, 0, 255]; assert(p3.signalEntropy == 1);
See Implementation
Computes $(LUCKY Discrete Signal Entropy) of input range range.