Skip to content

Commit

Permalink
missing space
Browse files Browse the repository at this point in the history
  • Loading branch information
JarronL committed Mar 26, 2020
1 parent 462b566 commit 27d77ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pynrc/maths/fast_poly.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ def jl_poly(xvals, coeff, dim_reorder=False, use_legendre=False):
raise ValueError('coefficient can only have 1, 2, or 3 dimensions. \
Found {} dimensions.'.format(ndim))

if use_legendre:
if use_legendre:
# Use Identity matrix to evaluate each polynomial component
lx = 2*xvals/xvals[-1] - 1
xfan = legendre.legval(lx, np.identity(deg+1))
Expand Down

0 comments on commit 27d77ea

Please sign in to comment.