1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
| from collections.abc import Callable, Iterable
| from typing import Any, Concatenate, Final, Self, TypeVar, overload
| from typing import Literal as L
|
| import numpy as np
| import numpy.typing as npt
| from numpy._typing import _IntLike_co
|
| from ._polybase import ABCPolyBase
| from ._polytypes import (
| _Array1,
| _Array2,
| _CoefSeries,
| _FuncBinOp,
| _FuncCompanion,
| _FuncDer,
| _FuncFit,
| _FuncFromRoots,
| _FuncGauss,
| _FuncInteg,
| _FuncLine,
| _FuncPoly2Ortho,
| _FuncPow,
| _FuncPts,
| _FuncRoots,
| _FuncUnOp,
| _FuncVal,
| _FuncVal2D,
| _FuncVal3D,
| _FuncValFromRoots,
| _FuncVander,
| _FuncVander2D,
| _FuncVander3D,
| _FuncWeight,
| _Series,
| _SeriesLikeCoef_co,
| )
| from .polyutils import trimcoef as chebtrim
|
| __all__ = [
| "chebzero",
| "chebone",
| "chebx",
| "chebdomain",
| "chebline",
| "chebadd",
| "chebsub",
| "chebmulx",
| "chebmul",
| "chebdiv",
| "chebpow",
| "chebval",
| "chebder",
| "chebint",
| "cheb2poly",
| "poly2cheb",
| "chebfromroots",
| "chebvander",
| "chebfit",
| "chebtrim",
| "chebroots",
| "chebpts1",
| "chebpts2",
| "Chebyshev",
| "chebval2d",
| "chebval3d",
| "chebgrid2d",
| "chebgrid3d",
| "chebvander2d",
| "chebvander3d",
| "chebcompanion",
| "chebgauss",
| "chebweight",
| "chebinterpolate",
| ]
|
| _NumberOrObjectT = TypeVar("_NumberOrObjectT", bound=np.number | np.object_)
| def _cseries_to_zseries(c: npt.NDArray[_NumberOrObjectT]) -> _Series[_NumberOrObjectT]: ...
| def _zseries_to_cseries(zs: npt.NDArray[_NumberOrObjectT]) -> _Series[_NumberOrObjectT]: ...
| def _zseries_mul(
| z1: npt.NDArray[_NumberOrObjectT],
| z2: npt.NDArray[_NumberOrObjectT],
| ) -> _Series[_NumberOrObjectT]: ...
| def _zseries_div(
| z1: npt.NDArray[_NumberOrObjectT],
| z2: npt.NDArray[_NumberOrObjectT],
| ) -> _Series[_NumberOrObjectT]: ...
| def _zseries_der(zs: npt.NDArray[_NumberOrObjectT]) -> _Series[_NumberOrObjectT]: ...
| def _zseries_int(zs: npt.NDArray[_NumberOrObjectT]) -> _Series[_NumberOrObjectT]: ...
|
| poly2cheb: _FuncPoly2Ortho[L["poly2cheb"]]
| cheb2poly: _FuncUnOp[L["cheb2poly"]]
|
| chebdomain: Final[_Array2[np.float64]]
| chebzero: Final[_Array1[np.int_]]
| chebone: Final[_Array1[np.int_]]
| chebx: Final[_Array2[np.int_]]
|
| chebline: _FuncLine[L["chebline"]]
| chebfromroots: _FuncFromRoots[L["chebfromroots"]]
| chebadd: _FuncBinOp[L["chebadd"]]
| chebsub: _FuncBinOp[L["chebsub"]]
| chebmulx: _FuncUnOp[L["chebmulx"]]
| chebmul: _FuncBinOp[L["chebmul"]]
| chebdiv: _FuncBinOp[L["chebdiv"]]
| chebpow: _FuncPow[L["chebpow"]]
| chebder: _FuncDer[L["chebder"]]
| chebint: _FuncInteg[L["chebint"]]
| chebval: _FuncVal[L["chebval"]]
| chebval2d: _FuncVal2D[L["chebval2d"]]
| chebval3d: _FuncVal3D[L["chebval3d"]]
| chebvalfromroots: _FuncValFromRoots[L["chebvalfromroots"]]
| chebgrid2d: _FuncVal2D[L["chebgrid2d"]]
| chebgrid3d: _FuncVal3D[L["chebgrid3d"]]
| chebvander: _FuncVander[L["chebvander"]]
| chebvander2d: _FuncVander2D[L["chebvander2d"]]
| chebvander3d: _FuncVander3D[L["chebvander3d"]]
| chebfit: _FuncFit[L["chebfit"]]
| chebcompanion: _FuncCompanion[L["chebcompanion"]]
| chebroots: _FuncRoots[L["chebroots"]]
| chebgauss: _FuncGauss[L["chebgauss"]]
| chebweight: _FuncWeight[L["chebweight"]]
| chebpts1: _FuncPts[L["chebpts1"]]
| chebpts2: _FuncPts[L["chebpts2"]]
|
| # keep in sync with `Chebyshev.interpolate`
| _RT = TypeVar("_RT", bound=np.number | np.bool | np.object_)
| @overload
| def chebinterpolate(
| func: np.ufunc,
| deg: _IntLike_co,
| args: tuple[()] = ...,
| ) -> npt.NDArray[np.float64 | np.complex128 | np.object_]: ...
| @overload
| def chebinterpolate(
| func: Callable[[npt.NDArray[np.float64]], _RT],
| deg: _IntLike_co,
| args: tuple[()] = ...,
| ) -> npt.NDArray[_RT]: ...
| @overload
| def chebinterpolate(
| func: Callable[Concatenate[npt.NDArray[np.float64], ...], _RT],
| deg: _IntLike_co,
| args: Iterable[Any],
| ) -> npt.NDArray[_RT]: ...
|
| class Chebyshev(ABCPolyBase[L["T"]]):
| @overload
| @classmethod
| def interpolate(
| cls,
| func: Callable[[npt.NDArray[np.float64]], _CoefSeries],
| deg: _IntLike_co,
| domain: _SeriesLikeCoef_co | None = ...,
| args: tuple[()] = ...,
| ) -> Self: ...
| @overload
| @classmethod
| def interpolate(
| cls,
| func: Callable[
| Concatenate[npt.NDArray[np.float64], ...],
| _CoefSeries,
| ],
| deg: _IntLike_co,
| domain: _SeriesLikeCoef_co | None = ...,
| *,
| args: Iterable[Any],
| ) -> Self: ...
| @overload
| @classmethod
| def interpolate(
| cls,
| func: Callable[
| Concatenate[npt.NDArray[np.float64], ...],
| _CoefSeries,
| ],
| deg: _IntLike_co,
| domain: _SeriesLikeCoef_co | None,
| args: Iterable[Any],
| ) -> Self: ...
|
|