peacock-data-public-datasets-idc-cronscript
/
venv
/lib
/python3.10
/site-packages
/scipy
/special
/_orthogonal.pyi
from __future__ import annotations | |
from typing import ( | |
Any, | |
Callable, | |
Literal, | |
Optional, | |
overload, | |
) | |
import numpy | |
_IntegerType = int | numpy.integer | |
_FloatingType = float | numpy.floating | |
_PointsAndWeights = tuple[numpy.ndarray, numpy.ndarray] | |
_PointsAndWeightsAndMu = tuple[numpy.ndarray, numpy.ndarray, float] | |
_ArrayLike0D = bool | int | float | complex | str | bytes | numpy.generic | |
__all__ = [ | |
'legendre', | |
'chebyt', | |
'chebyu', | |
'chebyc', | |
'chebys', | |
'jacobi', | |
'laguerre', | |
'genlaguerre', | |
'hermite', | |
'hermitenorm', | |
'gegenbauer', | |
'sh_legendre', | |
'sh_chebyt', | |
'sh_chebyu', | |
'sh_jacobi', | |
'roots_legendre', | |
'roots_chebyt', | |
'roots_chebyu', | |
'roots_chebyc', | |
'roots_chebys', | |
'roots_jacobi', | |
'roots_laguerre', | |
'roots_genlaguerre', | |
'roots_hermite', | |
'roots_hermitenorm', | |
'roots_gegenbauer', | |
'roots_sh_legendre', | |
'roots_sh_chebyt', | |
'roots_sh_chebyu', | |
'roots_sh_jacobi', | |
] | |
def roots_jacobi( | |
n: _IntegerType, | |
alpha: _FloatingType, | |
beta: _FloatingType, | |
) -> _PointsAndWeights: ... | |
def roots_jacobi( | |
n: _IntegerType, | |
alpha: _FloatingType, | |
beta: _FloatingType, | |
mu: Literal[False], | |
) -> _PointsAndWeights: ... | |
def roots_jacobi( | |
n: _IntegerType, | |
alpha: _FloatingType, | |
beta: _FloatingType, | |
mu: Literal[True], | |
) -> _PointsAndWeightsAndMu: ... | |
def roots_sh_jacobi( | |
n: _IntegerType, | |
p1: _FloatingType, | |
q1: _FloatingType, | |
) -> _PointsAndWeights: ... | |
def roots_sh_jacobi( | |
n: _IntegerType, | |
p1: _FloatingType, | |
q1: _FloatingType, | |
mu: Literal[False], | |
) -> _PointsAndWeights: ... | |
def roots_sh_jacobi( | |
n: _IntegerType, | |
p1: _FloatingType, | |
q1: _FloatingType, | |
mu: Literal[True], | |
) -> _PointsAndWeightsAndMu: ... | |
def roots_genlaguerre( | |
n: _IntegerType, | |
alpha: _FloatingType, | |
) -> _PointsAndWeights: ... | |
def roots_genlaguerre( | |
n: _IntegerType, | |
alpha: _FloatingType, | |
mu: Literal[False], | |
) -> _PointsAndWeights: ... | |
def roots_genlaguerre( | |
n: _IntegerType, | |
alpha: _FloatingType, | |
mu: Literal[True], | |
) -> _PointsAndWeightsAndMu: ... | |
def roots_laguerre(n: _IntegerType) -> _PointsAndWeights: ... | |
def roots_laguerre( | |
n: _IntegerType, | |
mu: Literal[False], | |
) -> _PointsAndWeights: ... | |
def roots_laguerre( | |
n: _IntegerType, | |
mu: Literal[True], | |
) -> _PointsAndWeightsAndMu: ... | |
def roots_hermite(n: _IntegerType) -> _PointsAndWeights: ... | |
def roots_hermite( | |
n: _IntegerType, | |
mu: Literal[False], | |
) -> _PointsAndWeights: ... | |
def roots_hermite( | |
n: _IntegerType, | |
mu: Literal[True], | |
) -> _PointsAndWeightsAndMu: ... | |
def roots_hermitenorm(n: _IntegerType) -> _PointsAndWeights: ... | |
def roots_hermitenorm( | |
n: _IntegerType, | |
mu: Literal[False], | |
) -> _PointsAndWeights: ... | |
def roots_hermitenorm( | |
n: _IntegerType, | |
mu: Literal[True], | |
) -> _PointsAndWeightsAndMu: ... | |
def roots_gegenbauer( | |
n: _IntegerType, | |
alpha: _FloatingType, | |
) -> _PointsAndWeights: ... | |
def roots_gegenbauer( | |
n: _IntegerType, | |
alpha: _FloatingType, | |
mu: Literal[False], | |
) -> _PointsAndWeights: ... | |
def roots_gegenbauer( | |
n: _IntegerType, | |
alpha: _FloatingType, | |
mu: Literal[True], | |
) -> _PointsAndWeightsAndMu: ... | |
def roots_chebyt(n: _IntegerType) -> _PointsAndWeights: ... | |
def roots_chebyt( | |
n: _IntegerType, | |
mu: Literal[False], | |
) -> _PointsAndWeights: ... | |
def roots_chebyt( | |
n: _IntegerType, | |
mu: Literal[True], | |
) -> _PointsAndWeightsAndMu: ... | |
def roots_chebyu(n: _IntegerType) -> _PointsAndWeights: ... | |
def roots_chebyu( | |
n: _IntegerType, | |
mu: Literal[False], | |
) -> _PointsAndWeights: ... | |
def roots_chebyu( | |
n: _IntegerType, | |
mu: Literal[True], | |
) -> _PointsAndWeightsAndMu: ... | |
def roots_chebyc(n: _IntegerType) -> _PointsAndWeights: ... | |
def roots_chebyc( | |
n: _IntegerType, | |
mu: Literal[False], | |
) -> _PointsAndWeights: ... | |
def roots_chebyc( | |
n: _IntegerType, | |
mu: Literal[True], | |
) -> _PointsAndWeightsAndMu: ... | |
def roots_chebys(n: _IntegerType) -> _PointsAndWeights: ... | |
def roots_chebys( | |
n: _IntegerType, | |
mu: Literal[False], | |
) -> _PointsAndWeights: ... | |
def roots_chebys( | |
n: _IntegerType, | |
mu: Literal[True], | |
) -> _PointsAndWeightsAndMu: ... | |
def roots_sh_chebyt(n: _IntegerType) -> _PointsAndWeights: ... | |
def roots_sh_chebyt( | |
n: _IntegerType, | |
mu: Literal[False], | |
) -> _PointsAndWeights: ... | |
def roots_sh_chebyt( | |
n: _IntegerType, | |
mu: Literal[True], | |
) -> _PointsAndWeightsAndMu: ... | |
def roots_sh_chebyu(n: _IntegerType) -> _PointsAndWeights: ... | |
def roots_sh_chebyu( | |
n: _IntegerType, | |
mu: Literal[False], | |
) -> _PointsAndWeights: ... | |
def roots_sh_chebyu( | |
n: _IntegerType, | |
mu: Literal[True], | |
) -> _PointsAndWeightsAndMu: ... | |
def roots_legendre(n: _IntegerType) -> _PointsAndWeights: ... | |
def roots_legendre( | |
n: _IntegerType, | |
mu: Literal[False], | |
) -> _PointsAndWeights: ... | |
def roots_legendre( | |
n: _IntegerType, | |
mu: Literal[True], | |
) -> _PointsAndWeightsAndMu: ... | |
def roots_sh_legendre(n: _IntegerType) -> _PointsAndWeights: ... | |
def roots_sh_legendre( | |
n: _IntegerType, | |
mu: Literal[False], | |
) -> _PointsAndWeights: ... | |
def roots_sh_legendre( | |
n: _IntegerType, | |
mu: Literal[True], | |
) -> _PointsAndWeightsAndMu: ... | |
class orthopoly1d(numpy.poly1d): | |
def __init__( | |
self, | |
roots: numpy.typing.ArrayLike, | |
weights: numpy.typing.ArrayLike | None, | |
hn: float = ..., | |
kn: float = ..., | |
wfunc = Optional[Callable[[float], float]], # noqa: UP007 | |
limits = tuple[float, float] | None, | |
monic: bool = ..., | |
eval_func: numpy.ufunc = ..., | |
) -> None: ... | |
def limits(self) -> tuple[float, float]: ... | |
def weight_func(self, x: float) -> float: ... | |
def __call__(self, x: _ArrayLike0D) -> Any: ... | |
def __call__(self, x: numpy.poly1d) -> numpy.poly1d: ... # type: ignore[misc] | |
def __call__(self, x: numpy.typing.ArrayLike) -> numpy.ndarray: ... | |
def legendre(n: _IntegerType, monic: bool = ...) -> orthopoly1d: ... | |
def chebyt(n: _IntegerType, monic: bool = ...) -> orthopoly1d: ... | |
def chebyu(n: _IntegerType, monic: bool = ...) -> orthopoly1d: ... | |
def chebyc(n: _IntegerType, monic: bool = ...) -> orthopoly1d: ... | |
def chebys(n: _IntegerType, monic: bool = ...) -> orthopoly1d: ... | |
def jacobi( | |
n: _IntegerType, | |
alpha: _FloatingType, | |
beta: _FloatingType, | |
monic: bool = ..., | |
) -> orthopoly1d: ... | |
def laguerre(n: _IntegerType, monic: bool = ...) -> orthopoly1d: ... | |
def genlaguerre( | |
n: _IntegerType, | |
alpha: _FloatingType, | |
monic: bool = ..., | |
) -> orthopoly1d: ... | |
def hermite(n: _IntegerType, monic: bool = ...) -> orthopoly1d: ... | |
def hermitenorm(n: _IntegerType, monic: bool = ...) -> orthopoly1d: ... | |
def gegenbauer( | |
n: _IntegerType, | |
alpha: _FloatingType, | |
monic: bool = ..., | |
) -> orthopoly1d: ... | |
def sh_legendre(n: _IntegerType, monic: bool = ...) -> orthopoly1d: ... | |
def sh_chebyt(n: _IntegerType, monic: bool = ...) -> orthopoly1d: ... | |
def sh_chebyu(n: _IntegerType, monic: bool = ...) -> orthopoly1d: ... | |
def sh_jacobi( | |
n: _IntegerType, | |
p: _FloatingType, | |
q: _FloatingType, | |
monic: bool = ..., | |
) -> orthopoly1d: ... | |
# These functions are not public, but still need stubs because they | |
# get checked in the tests. | |
def _roots_hermite_asy(n: _IntegerType) -> _PointsAndWeights: ... | |