mirror of https://github.com/jlizier/jidt
Fixed default value of dynamic exclusion window in Kernel MI calculator to be 0. Technically it is zero (because dynCorrExcl boolean is set to false, but gets reported as 100 because the integer value of dynCorrExclTime was not set to 0 itself)
This commit is contained in:
parent
d36c803e41
commit
0e27dbcbc2
|
|
@ -65,7 +65,7 @@ public class MutualInfoCalculatorMultiVariateKernel
|
|||
public static final String NORMALISE_PROP_NAME = "NORMALISE";
|
||||
|
||||
private boolean dynCorrExcl = false;
|
||||
private int dynCorrExclTime = 100;
|
||||
private int dynCorrExclTime = 0;
|
||||
/**
|
||||
* Property name for a dynamics exclusion time window (see Kantz and Schreiber),
|
||||
* default is 0 which means no dynamic exclusion window.
|
||||
|
|
|
|||
Loading…
Reference in New Issue