How can I cast np.longdouble to mpmath.mpf?
import numpy as np
import mpmath
b = np.longdouble(1.0)
a = mpmath.mpf(b)
print (a)
How can I cast np.longdouble to mpmath.mpf?
import numpy as np
import mpmath
b = np.longdouble(1.0)
a = mpmath.mpf(b)
print (a)