Exemple #1
0
 def _eval_evalf(self, prec):
     from mpmath import mp, workprec
     from sympy import Expr
     z = self.args[0]._to_mpmath(prec)
     with workprec(prec):
         res = mp.airyai(z, derivative=1)
     return Expr._from_mpmath(res, prec)
Exemple #2
0
 def _eval_evalf(self, prec):
     from mpmath import mp, workprec
     from sympy import Expr
     z = self.args[0]._to_mpmath(prec)
     with workprec(prec):
         res = mp.airyai(z, derivative=1)
     return Expr._from_mpmath(res, prec)
Exemple #3
0
 def _eval_evalf(self, prec):
     z = self.args[0]._to_mpmath(prec)
     with workprec(prec):
         res = mp.airyai(z, derivative=1)
     return Expr._from_mpmath(res, prec)
Exemple #4
0
 def _eval_evalf(self, prec):
     z = self.args[0]._to_mpmath(prec)
     with workprec(prec):
         res = mp.airyai(z, derivative=1)
     return Expr._from_mpmath(res, prec)