We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In the blockarray docs, the examples in https://scico.readthedocs.io/en/latest/_autosummary/scico.blockarray.html#numpy-ufuncs don't seem to match between code and math, especially the snp.sum(x, axis=2). We should check these.
snp.sum(x, axis=2)
Also, why does/should snp.sum(x, axis=2) work at all when snp.sum(x[1].shape, 1) gives an error? Similarly, why does snp.sum(x, axis=99) work?
snp.sum(x[1].shape, 1)
snp.sum(x, axis=99)
The text was updated successfully, but these errors were encountered:
BlockArray
@Michael-T-McCann: was this not resolved by #259?
Sorry, something went wrong.
No branches or pull requests
In the blockarray docs, the examples in https://scico.readthedocs.io/en/latest/_autosummary/scico.blockarray.html#numpy-ufuncs don't seem to match between code and math, especially the
snp.sum(x, axis=2)
. We should check these.Also, why does/should
snp.sum(x, axis=2)
work at all whensnp.sum(x[1].shape, 1)
gives an error? Similarly, why doessnp.sum(x, axis=99)
work?The text was updated successfully, but these errors were encountered: