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
BlockIndexRange
BlockedIndexRange
For example:
julia> Block(1, 1)[1:4, 1:4] 4×4 BlockArrays.BlockIndexRange{2, Tuple{UnitRange{Int64}, UnitRange{Int64}}}: Block(1, 1)[1, 1] Block(1, 1)[1, 2] Block(1, 1)[1, 3] Block(1, 1)[1, 4] Block(1, 1)[2, 1] Block(1, 1)[2, 2] Block(1, 1)[2, 3] Block(1, 1)[2, 4] Block(1, 1)[3, 1] Block(1, 1)[3, 2] Block(1, 1)[3, 3] Block(1, 1)[3, 4] Block(1, 1)[4, 1] Block(1, 1)[4, 2] Block(1, 1)[4, 3] Block(1, 1)[4, 4] julia> (Block(1, 1)[1:4, 1:4])[2:3, 2:3] 2×2 Matrix{BlockIndex{2}}: Block(1, 1)[2, 2] Block(1, 1)[2, 3] Block(1, 1)[3, 2] Block(1, 1)[3, 3]
while it could return Block(1, 1)[2:3, 2:3]. This would be helpful for implementing #346, among other applications.
Block(1, 1)[2:3, 2:3]
The text was updated successfully, but these errors were encountered:
BlockIndices
No branches or pull requests
For example:
while it could return
Block(1, 1)[2:3, 2:3]
. This would be helpful for implementing #346, among other applications.The text was updated successfully, but these errors were encountered: