├── LICENSE.txt ├── README.md ├── demos ├── demo.m ├── demo1.m ├── demo2.m ├── demo3.m └── demo4.m ├── estimators ├── .condKLDivergence.m.swp ├── chiSqDivergence.m ├── condKLDivergence.m ├── condShannonEntropy.m ├── condShannonMI.m ├── condTsallisDivergence.m ├── estimFAGBTemp.m ├── estimateOneDistroFunctionals.m ├── estimateTwoDistroFunctionals.m ├── fAlphaGBeta.m ├── getAsympAnalysis.m ├── getDenEstSamples.m ├── getInfFunAvgs.m ├── getTwoDistroInfFunAvgs.m ├── hellingerDivergence.m ├── klDivergence.m ├── pAlpha.m ├── parseCommonParams.m ├── parseOneDistroParams.m ├── parseTwoDistroParams.m ├── renyiDivergence.m ├── shannonEntropy.m ├── shannonMI.m ├── tsallisDivergence.m ├── ut_oneDistro.m └── ut_twoDistro.m ├── ifSetup.m └── kde ├── distSquared.m ├── kdeGaussKernel.m ├── kdeGivenBW.m ├── kdeLegendreKernel.m ├── kdePickBW.m ├── kernel.m ├── legPoly.m ├── ut_kdeGivenBW.m ├── ut_kdePickBW.m └── ut_legPoly.m /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirthevasank/if-estimators/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirthevasank/if-estimators/HEAD/README.md -------------------------------------------------------------------------------- /demos/demo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirthevasank/if-estimators/HEAD/demos/demo.m -------------------------------------------------------------------------------- /demos/demo1.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirthevasank/if-estimators/HEAD/demos/demo1.m -------------------------------------------------------------------------------- /demos/demo2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirthevasank/if-estimators/HEAD/demos/demo2.m -------------------------------------------------------------------------------- /demos/demo3.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirthevasank/if-estimators/HEAD/demos/demo3.m -------------------------------------------------------------------------------- /demos/demo4.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirthevasank/if-estimators/HEAD/demos/demo4.m -------------------------------------------------------------------------------- /estimators/.condKLDivergence.m.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirthevasank/if-estimators/HEAD/estimators/.condKLDivergence.m.swp -------------------------------------------------------------------------------- /estimators/chiSqDivergence.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirthevasank/if-estimators/HEAD/estimators/chiSqDivergence.m -------------------------------------------------------------------------------- /estimators/condKLDivergence.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirthevasank/if-estimators/HEAD/estimators/condKLDivergence.m -------------------------------------------------------------------------------- /estimators/condShannonEntropy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirthevasank/if-estimators/HEAD/estimators/condShannonEntropy.m -------------------------------------------------------------------------------- /estimators/condShannonMI.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirthevasank/if-estimators/HEAD/estimators/condShannonMI.m -------------------------------------------------------------------------------- /estimators/condTsallisDivergence.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirthevasank/if-estimators/HEAD/estimators/condTsallisDivergence.m -------------------------------------------------------------------------------- /estimators/estimFAGBTemp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirthevasank/if-estimators/HEAD/estimators/estimFAGBTemp.m -------------------------------------------------------------------------------- /estimators/estimateOneDistroFunctionals.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirthevasank/if-estimators/HEAD/estimators/estimateOneDistroFunctionals.m -------------------------------------------------------------------------------- /estimators/estimateTwoDistroFunctionals.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirthevasank/if-estimators/HEAD/estimators/estimateTwoDistroFunctionals.m -------------------------------------------------------------------------------- /estimators/fAlphaGBeta.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirthevasank/if-estimators/HEAD/estimators/fAlphaGBeta.m -------------------------------------------------------------------------------- /estimators/getAsympAnalysis.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirthevasank/if-estimators/HEAD/estimators/getAsympAnalysis.m -------------------------------------------------------------------------------- /estimators/getDenEstSamples.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirthevasank/if-estimators/HEAD/estimators/getDenEstSamples.m -------------------------------------------------------------------------------- /estimators/getInfFunAvgs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirthevasank/if-estimators/HEAD/estimators/getInfFunAvgs.m -------------------------------------------------------------------------------- /estimators/getTwoDistroInfFunAvgs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirthevasank/if-estimators/HEAD/estimators/getTwoDistroInfFunAvgs.m -------------------------------------------------------------------------------- /estimators/hellingerDivergence.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirthevasank/if-estimators/HEAD/estimators/hellingerDivergence.m -------------------------------------------------------------------------------- /estimators/klDivergence.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirthevasank/if-estimators/HEAD/estimators/klDivergence.m -------------------------------------------------------------------------------- /estimators/pAlpha.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirthevasank/if-estimators/HEAD/estimators/pAlpha.m -------------------------------------------------------------------------------- /estimators/parseCommonParams.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirthevasank/if-estimators/HEAD/estimators/parseCommonParams.m -------------------------------------------------------------------------------- /estimators/parseOneDistroParams.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirthevasank/if-estimators/HEAD/estimators/parseOneDistroParams.m -------------------------------------------------------------------------------- /estimators/parseTwoDistroParams.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirthevasank/if-estimators/HEAD/estimators/parseTwoDistroParams.m -------------------------------------------------------------------------------- /estimators/renyiDivergence.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirthevasank/if-estimators/HEAD/estimators/renyiDivergence.m -------------------------------------------------------------------------------- /estimators/shannonEntropy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirthevasank/if-estimators/HEAD/estimators/shannonEntropy.m -------------------------------------------------------------------------------- /estimators/shannonMI.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirthevasank/if-estimators/HEAD/estimators/shannonMI.m -------------------------------------------------------------------------------- /estimators/tsallisDivergence.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirthevasank/if-estimators/HEAD/estimators/tsallisDivergence.m -------------------------------------------------------------------------------- /estimators/ut_oneDistro.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirthevasank/if-estimators/HEAD/estimators/ut_oneDistro.m -------------------------------------------------------------------------------- /estimators/ut_twoDistro.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirthevasank/if-estimators/HEAD/estimators/ut_twoDistro.m -------------------------------------------------------------------------------- /ifSetup.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirthevasank/if-estimators/HEAD/ifSetup.m -------------------------------------------------------------------------------- /kde/distSquared.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirthevasank/if-estimators/HEAD/kde/distSquared.m -------------------------------------------------------------------------------- /kde/kdeGaussKernel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirthevasank/if-estimators/HEAD/kde/kdeGaussKernel.m -------------------------------------------------------------------------------- /kde/kdeGivenBW.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirthevasank/if-estimators/HEAD/kde/kdeGivenBW.m -------------------------------------------------------------------------------- /kde/kdeLegendreKernel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirthevasank/if-estimators/HEAD/kde/kdeLegendreKernel.m -------------------------------------------------------------------------------- /kde/kdePickBW.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirthevasank/if-estimators/HEAD/kde/kdePickBW.m -------------------------------------------------------------------------------- /kde/kernel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirthevasank/if-estimators/HEAD/kde/kernel.m -------------------------------------------------------------------------------- /kde/legPoly.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirthevasank/if-estimators/HEAD/kde/legPoly.m -------------------------------------------------------------------------------- /kde/ut_kdeGivenBW.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirthevasank/if-estimators/HEAD/kde/ut_kdeGivenBW.m -------------------------------------------------------------------------------- /kde/ut_kdePickBW.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirthevasank/if-estimators/HEAD/kde/ut_kdePickBW.m -------------------------------------------------------------------------------- /kde/ut_legPoly.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirthevasank/if-estimators/HEAD/kde/ut_legPoly.m --------------------------------------------------------------------------------