Skip to content

Commit e32b3f3

Browse files
committed
📝 interpolate: update generic type parameter docs
1 parent 521f8ec commit e32b3f3

File tree

1 file changed

+22
-22
lines changed

1 file changed

+22
-22
lines changed

README.md

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -160,23 +160,23 @@ All generic type parameters are optional and can be omitted if not needed.
160160

161161
### `scipy.interpolate`
162162

163-
| generic type | |
164-
| ---------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------- |
165-
| `AAA[T: inexact]` | [docs](https://docs.scipy.org/doc/scipy/reference/generated/scipy.interpolate.AAA.html) |
166-
| `BarycentricInterpolator[T: float64 \| complex128]` | [docs](https://docs.scipy.org/doc/scipy/reference/generated/scipy.interpolate.BarycentricInterpolator.html) |
167-
| `BPoly[T: float64 \| complex128]` | [docs](https://docs.scipy.org/doc/scipy/reference/generated/scipy.interpolate.BPoly.html) |
168-
| `BSpline[T: float64 \| complex128]` | [docs](https://docs.scipy.org/doc/scipy/reference/generated/scipy.interpolate.BSpline.html) |
169-
| `CubicHermiteSpline[T: float64 \| complex128]` | [docs](https://docs.scipy.org/doc/scipy/reference/generated/scipy.interpolate.CubicHermiteSpline.html) |
170-
| `CubicSpline[T: float64 \| complex128]` | [docs](https://docs.scipy.org/doc/scipy/reference/generated/scipy.interpolate.CubicSpline.html) |
171-
| `FloaterHormannInterpolator[T: float64 \| complex128]` | [docs](https://docs.scipy.org/doc/scipy/reference/generated/scipy.interpolate.FloaterHormannInterpolator.html) |
172-
| `KroghInterpolator[T: float64 \| complex128]` | [docs](https://docs.scipy.org/doc/scipy/reference/generated/scipy.interpolate.KroghInterpolator.html) |
173-
| `LinearNDInterpolator[T: float64 \| complex128]` | [docs](https://docs.scipy.org/doc/scipy/reference/generated/scipy.interpolate.LinearNDInterpolator.html) |
174-
| `NdBSpline[T: float64 \| complex128]` | [docs](https://docs.scipy.org/doc/scipy/reference/generated/scipy.interpolate.NdBSpline.html) |
175-
| `NdPPoly[T: float64 \| complex128]` | [docs](https://docs.scipy.org/doc/scipy/reference/generated/scipy.interpolate.NdPPoly.html) |
176-
| `NearestNDInterpolator[T: float64 \| complex128]` | [docs](https://docs.scipy.org/doc/scipy/reference/generated/scipy.interpolate.NearestNDInterpolator.html) |
177-
| `PPoly[T: float64 \| complex128]` | [docs](https://docs.scipy.org/doc/scipy/reference/generated/scipy.interpolate.PPoly.html) |
178-
| `RBFInterpolator[S: (int, ...), T: float64 \| complex128]` | [docs](https://docs.scipy.org/doc/scipy/reference/generated/scipy.interpolate.RBFInterpolator.html) |
179-
| `RegularGridInterpolator[T: float64 \| complex128]` | [docs](https://docs.scipy.org/doc/scipy/reference/generated/scipy.interpolate.RegularGridInterpolator.html) |
163+
| generic type | |
164+
| ------------------------------------------------------------ | -------------------------------------------------------------------------------------------------------------- |
165+
| `AAA[T: inexact]` | [docs](https://docs.scipy.org/doc/scipy/reference/generated/scipy.interpolate.AAA.html) |
166+
| `BarycentricInterpolator[T: float64 \| complex128]` | [docs](https://docs.scipy.org/doc/scipy/reference/generated/scipy.interpolate.BarycentricInterpolator.html) |
167+
| `BPoly[T: float64 \| complex128]` | [docs](https://docs.scipy.org/doc/scipy/reference/generated/scipy.interpolate.BPoly.html) |
168+
| `BSpline[T: float64 \| complex128]` | [docs](https://docs.scipy.org/doc/scipy/reference/generated/scipy.interpolate.BSpline.html) |
169+
| `CubicHermiteSpline[T: float64 \| complex128]` | [docs](https://docs.scipy.org/doc/scipy/reference/generated/scipy.interpolate.CubicHermiteSpline.html) |
170+
| `CubicSpline[T: float64 \| complex128]` | [docs](https://docs.scipy.org/doc/scipy/reference/generated/scipy.interpolate.CubicSpline.html) |
171+
| `FloaterHormannInterpolator[T: float64 \| complex128]` | [docs](https://docs.scipy.org/doc/scipy/reference/generated/scipy.interpolate.FloaterHormannInterpolator.html) |
172+
| `KroghInterpolator[T: float64 \| complex128, S: (int, ...)]` | [docs](https://docs.scipy.org/doc/scipy/reference/generated/scipy.interpolate.KroghInterpolator.html) |
173+
| `LinearNDInterpolator[T: float64 \| complex128]` | [docs](https://docs.scipy.org/doc/scipy/reference/generated/scipy.interpolate.LinearNDInterpolator.html) |
174+
| `NdBSpline[T: float64 \| complex128]` | [docs](https://docs.scipy.org/doc/scipy/reference/generated/scipy.interpolate.NdBSpline.html) |
175+
| `NdPPoly[T: float64 \| complex128]` | [docs](https://docs.scipy.org/doc/scipy/reference/generated/scipy.interpolate.NdPPoly.html) |
176+
| `NearestNDInterpolator[T: float64 \| complex128]` | [docs](https://docs.scipy.org/doc/scipy/reference/generated/scipy.interpolate.NearestNDInterpolator.html) |
177+
| `PPoly[T: float64 \| complex128]` | [docs](https://docs.scipy.org/doc/scipy/reference/generated/scipy.interpolate.PPoly.html) |
178+
| `RBFInterpolator[T: float64 \| complex128, S: (int, ...)]` | [docs](https://docs.scipy.org/doc/scipy/reference/generated/scipy.interpolate.RBFInterpolator.html) |
179+
| `RegularGridInterpolator[T: float64 \| complex128]` | [docs](https://docs.scipy.org/doc/scipy/reference/generated/scipy.interpolate.RegularGridInterpolator.html) |
180180

181181
### `scipy.optimize`
182182

@@ -221,11 +221,11 @@ All generic type parameters are optional and can be omitted if not needed.
221221

222222
#### `scipy.sparse.linalg`
223223

224-
| generic type | |
225-
| ----------------------------------- | ---------------------------------------------------------------------------------------------------- |
226-
| `LaplacianNd[T: real]` | [docs](https://docs.scipy.org/doc/scipy/reference/generated/scipy.sparse.linalg.LaplacianNd.html) |
227-
| `LinearOperator[T: scalar]` | [docs](https://docs.scipy.org/doc/scipy/reference/generated/scipy.sparse.linalg.LinearOperator.html) |
228-
| `SuperLU[T: inexact]` | [docs](https://docs.scipy.org/doc/scipy/reference/generated/scipy.sparse.linalg.SuperLU.html) |
224+
| generic type | |
225+
| --------------------------- | ---------------------------------------------------------------------------------------------------- |
226+
| `LaplacianNd[T: real]` | [docs](https://docs.scipy.org/doc/scipy/reference/generated/scipy.sparse.linalg.LaplacianNd.html) |
227+
| `LinearOperator[T: scalar]` | [docs](https://docs.scipy.org/doc/scipy/reference/generated/scipy.sparse.linalg.LinearOperator.html) |
228+
| `SuperLU[T: inexact]` | [docs](https://docs.scipy.org/doc/scipy/reference/generated/scipy.sparse.linalg.SuperLU.html) |
229229

230230
### `scipy.stats`
231231

0 commit comments

Comments
 (0)