-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
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
support vectors? #35
Comments
Right now,
Said that, I suppose not doing this might just be an oversight. If there isn't type instability issue, supporting cases when |
One could implement this with Marking this as "help wanted," meaning a PR would be considered but does not seem to be a priority for any of the maintainers. |
A related useful functionality would be converting uneven nested vectors to a padded matrix.
|
Is this maybe a better way than using the julia> PaddedView(1,view(a,:,:),(10,2),(1,2))
10×2 PaddedView(1, OffsetArray(view(::Matrix{Int64}, :, :), 1:10, 2:2), (Base.OneTo(10), Base.OneTo(2))) with eltype Int64:
1 1
1 2
1 3
1 4
1 5
1 6
1 7
1 8
1 9
1 10 |
Why is it not possible to provide a
PaddedView
for aVector
?The text was updated successfully, but these errors were encountered: