Important: The information in this document is obsolete and should not be used for new development.
FixedSquareRoot
You can use theFixedSquareRoot
macro to determine the square root of a fixed number.
#define FixedSquareRoot(a) ((Fixed)FractSquareRoot(a) + 64 >>7)
a
- The number for which the square root is to be determined.
- macro result
- The square root of the number.