-
-
Notifications
You must be signed in to change notification settings - Fork 4.8k
Open
Labels
Easy to FixThis is a good issue for new contributors. Feel free to work on this if no one else has already.This is a good issue for new contributors. Feel free to work on this if no one else has already.functions
Description
In module mpmath
, Legendre functions of first and second kind are provided with legenp
and legenq
, they are callable with non-integer argument:
>>> legenp(2.2,1.1,0.1)
0.316775546015185
In Sympy, only the first kind seems to be available with legendre
and assoc_legendre
. Moreover, they seem to be callable with integer only argument:
>>> assoc_legendre(2.2,1.1,0.1)
assoc_legendre(2.2, 1.1, 0.1)
Would it be possible to add support for first and second kind Legendre functions and associated Legendre functions with non-integer arguments ?
Metadata
Metadata
Assignees
Labels
Easy to FixThis is a good issue for new contributors. Feel free to work on this if no one else has already.This is a good issue for new contributors. Feel free to work on this if no one else has already.functions