@@ -565,8 +565,10 @@ def __init__(self):
565
565
0.567143290409784
566
566
"""
567
567
BuiltinFunction .__init__ (self , "lambert_w" , nargs = 2 ,
568
- conversions = {'mathematica' :'ProductLog' ,
569
- 'maple' :'LambertW' })
568
+ conversions = {'mathematica' : 'ProductLog' ,
569
+ 'maple' : 'LambertW' ,
570
+ 'matlab' : 'lambertw' ,
571
+ 'maxima' : 'generalized_lambert_w' })
570
572
571
573
def __call__ (self , * args , ** kwds ):
572
574
r"""
@@ -718,21 +720,25 @@ def _maxima_init_evaled_(self, n, z):
718
720
sage: lambert_w(0, x)._maxima_()
719
721
lambert_w(_SAGE_VAR_x)
720
722
sage: lambert_w(1, x)._maxima_()
721
- Traceback (most recent call last):
722
- ...
723
- NotImplementedError: Non-principal branch lambert_w[1](x) is not implemented in Maxima
723
+ generalized_lambert_w(1,_SAGE_VAR_x)
724
+
725
+ TESTS::
726
+
727
+ sage: lambert_w(x)._maxima_()._sage_()
728
+ lambert_w(x)
729
+ sage: lambert_w(2, x)._maxima_()._sage_()
730
+ lambert_w(2, x)
724
731
"""
732
+ if isinstance (z , str ):
733
+ maxima_z = z
734
+ elif hasattr (z , '_maxima_init_' ):
735
+ maxima_z = z ._maxima_init_ ()
736
+ else :
737
+ maxima_z = str (z )
725
738
if n == 0 :
726
- if isinstance (z ,str ):
727
- maxima_z = z
728
- elif hasattr (z ,'_maxima_init_' ):
729
- maxima_z = z ._maxima_init_ ()
730
- else :
731
- maxima_z = str (z )
732
739
return "lambert_w(%s)" % maxima_z
733
740
else :
734
- raise NotImplementedError ("Non-principal branch lambert_w[%s](%s) is not implemented in Maxima" % (n , z ))
735
-
741
+ return "generalized_lambert_w(%s,%s)" % (n , maxima_z )
736
742
737
743
def _print_ (self , n , z ):
738
744
"""
@@ -759,15 +765,17 @@ def _print_latex_(self, n, z):
759
765
EXAMPLES::
760
766
761
767
sage: latex(lambert_w(1))
762
- \operatorname{W_0}(1 )
768
+ \operatorname{W}({1} )
763
769
sage: latex(lambert_w(0,x))
764
- \operatorname{W_0}(x )
770
+ \operatorname{W}({x} )
765
771
sage: latex(lambert_w(1,x))
766
- \operatorname{W_{1}}(x)
772
+ \operatorname{W_{1}}({x})
773
+ sage: latex(lambert_w(1,x+exp(x)))
774
+ \operatorname{W_{1}}({x + e^{x}})
767
775
"""
768
776
if n == 0 :
769
- return r"\operatorname{W_0}(%s )" % z
777
+ return r"\operatorname{W}({%s} )" % z . _latex_ ()
770
778
else :
771
- return r"\operatorname{W_{%s}}(%s )" % (n , z )
779
+ return r"\operatorname{W_{%s}}({%s} )" % (n , z . _latex_ () )
772
780
773
781
lambert_w = Function_lambert_w ()
0 commit comments