12 lines
512 B
Text
12 lines
512 B
Text
# Males (B2: waist, C2: neck)
|
|
# Replace `height` with actual height
|
|
# for the imperial system, replace 30,3 with 36,76
|
|
=86,01 * Log10(B2 - C2) - 70,041 * log10(height) + 30,3
|
|
|
|
# Females (B2: waist, C2: neck, D2: hips)
|
|
# Replace `height` with actual height
|
|
# for the imperial system, replace 104,912 with 78,387
|
|
=163,205 * Log10(B2 + D2 - C2) - 97,684 * Log10(height) - 104,912
|
|
|
|
# ALL MEASUREMENTS SHOULD BE DONE IN METRIC, LIKE THE REST OF THE WORLD DOES IT.
|
|
# https://friendlybit.com/other/im-not-from-america/
|