-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* ENH: add `sinc` * TST: sinc: add tests * DOC: sinc: tweak * DOC: sinc: more tweaks * TST: sinc: add 3D test * improve `where` call Co-authored-by: jakirkham <[email protected]> * Apply suggestions from code review * DOC: sinc: add `xp` param * Update _funcs.py Co-authored-by: jakirkham <[email protected]> * appease formatter --------- Co-authored-by: jakirkham <[email protected]>
- Loading branch information
1 parent
3dad7f7
commit bd00f3a
Showing
4 changed files
with
109 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,4 +10,5 @@ | |
cov | ||
expand_dims | ||
kron | ||
sinc | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
from __future__ import annotations | ||
|
||
from ._funcs import atleast_nd, cov, expand_dims, kron | ||
from ._funcs import atleast_nd, cov, expand_dims, kron, sinc | ||
|
||
__version__ = "0.1.2.dev0" | ||
|
||
__all__ = ["__version__", "atleast_nd", "cov", "expand_dims", "kron"] | ||
__all__ = ["__version__", "atleast_nd", "cov", "expand_dims", "kron", "sinc"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters