Ask Your Question

ijpulidos's profile - activity

2018-06-18 21:22:08 +0200 received badge  Famous Question (source)
2015-11-16 02:44:19 +0200 received badge  Notable Question (source)
2015-10-26 19:27:00 +0200 received badge  Popular Question (source)
2012-10-12 05:11:58 +0200 answered a question How to use associated legendre polynomials in sage?

Oh sorry, this was already in the official documentation I just misread it.

http://www.sagemath.org/doc/reference...

2012-10-12 01:52:12 +0200 asked a question How to use associated legendre polynomials in sage?

Hey, I'm trying to make a symbolic expression (function) that depends on associated lengendre polynomials. For this I'm using the maxima module/interface. When I do something like

maxima.assoc_legendre_p(2,0,x)

I get the correct output. But when I try something like the following

lp(l,m,x) = maxima.assoc_legendre_p(l,m,x)

and then lp(2,0,3) all I get is "assoc_legendre_p(2, 0, 3)". So it's not understanding the "assoc_legendre_p" part, it takes it as many symbols. How could I achieve this? Thanks.

PS: The actual expression is more complicated than that, but to makes thing simple I used a basic example.