Lets say I have the array:
x = np.array([0.00001,0.001])
numpy will make the numbers to
array([ 1.00000000e-05, 1.00000000e-03])
Now I want to get the exponents, something like
x.get_exponent()
with result
[-5,-3]
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can use
np.floor(np.log10(np.abs(x))).For example: