python - Can lambdify return an array with dytpe np.float128? -
 I am solving a large non-linear system of equations and I need a higher number of numerical precision. I am using   By default, lambdify   for input is required Output only shows input:  sympy.lambdify  to convert the system of equations and its Jacobian to vector work, which take inputs as inputs and return a ndarray as outdated.   numpy.float64  returns an array with dtype. Is it possible to return an array with dtype  numpy.float128 ? Maybe the dtype of  numpy.float128     
 
  
Comments
Post a Comment