Hi, I just wanted to check if the formula is ok because I think this should be: ``` temp = _apply_over_degree(np.multiply, rlmatrix, (J*J)) features[9] = ((np.apply_over_axes(np.sum, _apply_over_degree(np.divide, temp, (I*I)), axes=(0, 1))[0, 0])/S).mean() ``` instead of: ``` temp = _apply_over_degree(np.multiply, rlmatrix, (J*J)) features[9] = ((np.apply_over_axes(np.sum, _apply_over_degree(np.divide, temp, (J*J)), axes=(0, 1))[0, 0])/S).mean() ``` Thanks