Calculates the body surface area.
Syntax
_CalculateBSA(height,weight)
Parameters
Parameters for _CalculateBSA
Parameter | Definition | Data type |
---|---|---|
height | Height of the subject, in centimeters. | Float |
weight | Weight of the subject, in kilograms. | Float |
Returns
Body surface area (Float).
Notes
(Float)(0.007184 * Math.Pow(height,0.725) * Math.Pow(weight,0.425));
(Math.Pow is a method that raises a value to the specified power.)
Copyright © 2013 Oracle and/or its affiliates. All rights reserved. |
---|