Ejemplo n.º 1
0
 def _eval_as_leading_term(self, x):
     if not self.exp.has(x):
         return Pow(self.base.as_leading_term(x), self.exp)
     return C.exp(self.exp * C.log(self.base)).as_leading_term(x)
Ejemplo n.º 2
0
 def _eval_power(self, exp):
     return C.exp(exp)
Ejemplo n.º 3
0
Archivo: power.py Proyecto: Maihj/sympy
 def _eval_as_leading_term(self, x):
     if not self.exp.has(x):
         return Pow(self.base.as_leading_term(x), self.exp)
     return C.exp(self.exp * C.log(self.base)).as_leading_term(x)
Ejemplo n.º 4
0
Archivo: numbers.py Proyecto: NO2/sympy
 def _eval_power(self, exp):
     return C.exp(exp)