Skip to content

Commit efcd9d1

Browse files
committed
suggested fixes
1 parent 03af0e1 commit efcd9d1

File tree

1 file changed

+10
-5
lines changed

1 file changed

+10
-5
lines changed

src/sage/functions/orthogonal_polys.py

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1888,7 +1888,8 @@ def __init__(self):
18881888
1/4*sqrt(2)*(36*pi - 36*I*log(2) + 25*I)
18891889
"""
18901890
BuiltinFunction.__init__(self, "gen_legendre_Q", nargs=3, latex_name=r"Q",
1891-
conversions={'maxima': 'assoc_legendre_q', 'mathematica': 'LegendreQ',
1891+
conversions={'maxima': 'assoc_legendre_q',
1892+
'mathematica': 'LegendreQ',
18921893
'maple': 'LegendreQ'})
18931894

18941895
def _eval_(self, n, m, x, *args, **kwds):
@@ -2339,8 +2340,10 @@ def __init__(self):
23392340
gegenbauer(x, x, x)
23402341
"""
23412342
GinacFunction.__init__(self, "gegenbauer", nargs=3, latex_name=r"C",
2342-
conversions={'maxima': 'ultraspherical', 'mathematica': 'GegenbauerC',
2343-
'maple': 'GegenbauerC', 'sympy': 'gegenbauer'})
2343+
conversions={'maxima': 'ultraspherical',
2344+
'mathematica': 'GegenbauerC',
2345+
'maple': 'GegenbauerC',
2346+
'sympy': 'gegenbauer'})
23442347

23452348

23462349
ultraspherical = Func_ultraspherical()
@@ -2523,8 +2526,10 @@ def __init__(self):
25232526
gen_laguerre(_SAGE_VAR_n,_SAGE_VAR_a, gen_laguerre(_SAGE_VAR_n,_SAGE_VAR_a,_SAGE_VAR_x))
25242527
"""
25252528
OrthogonalFunction.__init__(self, "gen_laguerre", nargs=3, latex_name=r"L",
2526-
conversions={'maxima': 'gen_laguerre', 'mathematica': 'LaguerreL',
2527-
'maple': 'LaguerreL', 'sympy': 'assoc_laguerre'})
2529+
conversions={'maxima': 'gen_laguerre',
2530+
'mathematica': 'LaguerreL',
2531+
'maple': 'LaguerreL',
2532+
'sympy': 'assoc_laguerre'})
25282533

25292534
def _eval_(self, n, a, x, *args, **kwds):
25302535
r"""

0 commit comments

Comments
 (0)