actually I just set:
double newZone = (int) calcAerobicZone (age);
double newFat = (int) calcFatBurningZ one(age);
this truncated the decimal places which works cause when your target heart rate is 127.75 the .75 is not really necessary.
double newZone = (int) calcAerobicZone (age);
double newFat = (int) calcFatBurningZ one(age);
this truncated the decimal places which works cause when your target heart rate is 127.75 the .75 is not really necessary.
Comment