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:
jlizier 2017-09-02 20:18:36 +10:00
parent d36c803e41
commit 0e27dbcbc2
1 changed files with 1 additions and 1 deletions

View File

@ -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.