getLeanBodyMass static method

double getLeanBodyMass(
  1. double weight,
  2. double bfr
)

去脂体重 @param: weight(kg) @param: bfr(体脂率 body fat rate) @result: (kg)

Implementation

static double getLeanBodyMass(double weight, double bfr) {
  double fatMass = getFatMass(weight, bfr);
  return weight - fatMass;
}