Exemplo 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)
Exemplo n.º 2
0
 def _eval_power(self, exp):
     return C.exp(exp)
Exemplo n.º 3
0
Arquivo: power.py Projeto: 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)
Exemplo n.º 4
0
Arquivo: numbers.py Projeto: NO2/sympy
 def _eval_power(self, exp):
     return C.exp(exp)