Math.frexp()
គេប្រើសំរាប់ Splits X ទៅជាnormalized fraction and an exponent
ត្រឡប់ជាតំលៃចំនួន២លេខះ
M ជាចំនួនលេខដែលផ្ទុកនៅ Significant (binary) digits and whose absolute value is the range [0.5,1.0] ( or 0 when x is 0)
E ជា integral exponents of 2
Syntax: x = m * 2ê^
X(តំរូវការ) វាជាចំនួនលេខ
សូមមើលកូដះ
print(math.frexp(2)) ---> 0.5 2
print(math.frexp(3)) ---> 0.75 2
print(math.frexp(128)) ---> 0.5 8
No comments:
Post a Comment