Articles → Numpy → Idexp Function In NumpyIdexp Function In NumpyIn this article, we will discuss the "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