Initial configuration commit
This commit is contained in:
commit
31c8abea59
266 changed files with 780274 additions and 0 deletions
31
typings/numpy/array_api/_statistical_functions.pyi
Normal file
31
typings/numpy/array_api/_statistical_functions.pyi
Normal file
|
@ -0,0 +1,31 @@
|
|||
"""
|
||||
This type stub file was generated by pyright.
|
||||
"""
|
||||
|
||||
from ._array_object import Array
|
||||
from typing import Optional, TYPE_CHECKING, Tuple, Union
|
||||
from ._typing import Dtype
|
||||
|
||||
if TYPE_CHECKING:
|
||||
...
|
||||
def max(x: Array, /, *, axis: Optional[Union[int, Tuple[int, ...]]] = ..., keepdims: bool = ...) -> Array:
|
||||
...
|
||||
|
||||
def mean(x: Array, /, *, axis: Optional[Union[int, Tuple[int, ...]]] = ..., keepdims: bool = ...) -> Array:
|
||||
...
|
||||
|
||||
def min(x: Array, /, *, axis: Optional[Union[int, Tuple[int, ...]]] = ..., keepdims: bool = ...) -> Array:
|
||||
...
|
||||
|
||||
def prod(x: Array, /, *, axis: Optional[Union[int, Tuple[int, ...]]] = ..., dtype: Optional[Dtype] = ..., keepdims: bool = ...) -> Array:
|
||||
...
|
||||
|
||||
def std(x: Array, /, *, axis: Optional[Union[int, Tuple[int, ...]]] = ..., correction: Union[int, float] = ..., keepdims: bool = ...) -> Array:
|
||||
...
|
||||
|
||||
def sum(x: Array, /, *, axis: Optional[Union[int, Tuple[int, ...]]] = ..., dtype: Optional[Dtype] = ..., keepdims: bool = ...) -> Array:
|
||||
...
|
||||
|
||||
def var(x: Array, /, *, axis: Optional[Union[int, Tuple[int, ...]]] = ..., correction: Union[int, float] = ..., keepdims: bool = ...) -> Array:
|
||||
...
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue