Method: HealthCalculator::BMI#bmi_prime_kg

Defined in:
lib/health_calculator.rb

#bmi_prime_kg(bmi_value) ⇒ Object

For instance, a person with BMI 34 has a BMI Prime of 34/25 = 1.36, BMI PRIME = BMIVALUE / 25



48
49
50
51
52
# File 'lib/health_calculator.rb', line 48

def bmi_prime_kg(bmi_value)
  if bmi_value > 25
  @bmi_prime_kg = bmi_value / 25
    end 
end