Hello, I am trying to see if the chi2 kernel implementation is the same as the VLFeat's one so I did a test with some numbers to see if I get the same numbers when using the HomogeneousKernelMap. It is not the same although the parameters seems to be the same.. Is it something I am doing wrong ? Here is the code: double[] a = new double[]{1, 2, 3}; HomogeneousKernelMap.KernelType type = HomogeneousKernelMap.KernelType.Chi2; double gamma = 1; HomogeneousKernelMap.WindowType wintype = HomogeneousKernelMap.WindowType.Rectangular;...