Approximate ELO
Fragment of a discussion from User talk:Chase-san
Jump to navigation
Jump to search
static final double DRIFTED_AVERAGE = -2397.92418506835;
static final double DESIRED_AVERAGE = 1600;
static double calculateElo(double driftedElo) {
return driftedElo - DRIFTED_AVERAGE + DESIRED_AVERAGE;
}
MN