Skip to content

Commit

Permalink
TL: minor doc corrections
Browse files Browse the repository at this point in the history
  • Loading branch information
tlunet committed Jun 21, 2024
1 parent c2aee73 commit 547b090
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions qmat/lagrange.py
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ def getInterpolationMatrix(self, times):
concom = (iDiff == np.inf) | (iDiff == -np.inf)
i, j = np.where(concom)

# Replace iDiff by on on those lines to get a simple copy of the value
# Replace iDiff by one on those lines to get a simple copy of the value
iDiff[i, :] = concom[i, :]

# Compute interpolation matrix using weights
Expand Down Expand Up @@ -288,7 +288,7 @@ def getIntegrationMatrix(self, intervals, numQuad='FEJER'):
- 'LEGENDRE_SCIPY' : Gauss-Legendre rule from Scipy
- 'FEJER' : internaly implemented Fejer-I rule
The default is 'LEGENDRE_NUMPY'.
The default is 'FEJER'.
Returns
-------
Expand Down

0 comments on commit 547b090

Please sign in to comment.