Some useful extensions for NumPy
Project description
npx
NumPy and SciPy are large libraries used everywhere in scientific computing. That's why breaking backwards-compatibility comes as a significant cost and is almost always avoided, even if the API of some methods is arguably lacking. This package provides drop-in wrappers "fixing" those.
If you have a fix for a NumPy method that can't go upstream for some reason, feel free to PR here.
-
npx.dot(a, b)
Forms the dot product between the last axis of
a
and the first axis ofb
.(Not the second-last axis of
b
asnumpy.dot(a, b)
.) -
npx.solve(A, b)
Solves a linear equation system with a matrix of shape
(n, n)
and an array of shape(n, ...)
. The output has the same shape as the second argument. -
npx.sum_at(a, idx, minlength: int = 0) npx.add_at(out, idx, a)
Returns an array with entries of
a
summed up at indicesidx
with a minumum length ofminlength
.idx
can have any shape as long as it's matchinga
. The output shape is(minlength,...)
.The numpy equivalent
numpy.add.at
is much slower:(See also this numpy bug.)
-
npx.unique_rows(a, return_inverse=False, return_counts=False)
Returns the unique rows of the integer array
a
. The numpy alternativenp.unique(a, axis=0)
is slow. -
sol, info = npx.cg(A, b, tol=1.0e-10) sol, info = npx.minres(A, b, tol=1.0e-10) sol, info = npx.gmres(A, b, tol=1.0e-10)
sol
is the solution of the linear systemA @ x = b
(orNone
if no convergence), andinfo
contains some useful data, e.g.,info.resnorms
. The methods are wrappers around SciPy's iterative solvers.
License
npx is published under the MIT license.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file npx-0.0.4.tar.gz
.
File metadata
- Download URL: npx-0.0.4.tar.gz
- Upload date:
- Size: 6.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4cecfcab3532bcab4b5c86abbdc9f46913aabe0e84b4c86cf5d7d7ef46a86a1f |
|
MD5 | dd8b27ca692d20b3d0db4028bffab014 |
|
BLAKE2b-256 | 840580ca216ff82b8c2ad9d1962a0f406f19ddb060bfda3e58fae2eb3b6aa791 |
File details
Details for the file npx-0.0.4-py3-none-any.whl
.
File metadata
- Download URL: npx-0.0.4-py3-none-any.whl
- Upload date:
- Size: 6.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c52c2bb9e6fea9335260129f01f5c58cc6b052e1712bee7d4e6fd97f466b23c9 |
|
MD5 | 632d243e8354b9744bf6c89989724c3a |
|
BLAKE2b-256 | 539c0e292ad88840dd76a635ec36fdacb62c3b167951d1af02dab5f2ef776d36 |