Articles → Numpy → idexp function in numpyidexp function in numpyIn this article, we will discuss about idexp function in numpy.Purpose Returns x1* 2**x2.Syntax Numpy.idexp(x1, x2)Example import numpy as np print(np.ldexp(8,2))The calculation of above program will be8* 2**2 8*4 32Output Click to EnlargePosted By - Karan Gupta Posted On - Tuesday, June 18, 2019 Query/Feedback Your Email Id Subject Query/Feedback Characters remaining 250
Numpy.idexp(x1, x2)
import numpy as np print(np.ldexp(8,2))
8* 2**2 8*4 32
Query/Feedback