Added bias correction property for Gaussian MI to AutoAnalyser GUI

This commit is contained in:
jlizier 2018-08-22 16:00:52 +10:00
parent 323ef47475
commit 7f4dfa7970
1 changed files with 7 additions and 1 deletions

View File

@ -114,12 +114,18 @@ public class AutoAnalyserMI extends AutoAnalyserChannelCalculator
};
// Gaussian properties:
gaussianProperties = new String[] {
MutualInfoCalculatorMultiVariateGaussian.PROP_BIAS_CORRECTION
};
gaussianPropertiesFieldNames = new String[] {
"PROP_BIAS_CORRECTION"
};
gaussianPropertyDescriptions = new String[] {
"Whether the analytically determined bias (as the mean of the<br/>" +
"surrogate distribution) will be subtracted from all" +
"calculated values. Default is false."
};
gaussianPropertyValueChoices = new String[][] {
gaussianPropertyValueChoices = new String[][] {
{"true", "false"}
};
// Kernel:
kernelProperties = new String[] {