You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
julia> using StackViews
julia> A = rand(100, 100);
julia> n = 100;
julia> StackView([A for _ in 1:n,_ in 1:n])
(100, 100, 10000)
We can see that StackView ignores the for loop structure, and flatten outer layer into a vector automatically. In principal, it should be an array with size (100,100,100,100). Is there anyway that we can persevere array size in StackView?
The text was updated successfully, but these errors were encountered:
Similar as the example StackViews.jl example on repeated array. Suppose we have a 2-dimensional nested array
A
:We can see that
StackView
ignores thefor
loop structure, and flatten outer layer into a vector automatically. In principal, it should be an array with size (100,100,100,100). Is there anyway that we can persevere array size inStackView
?The text was updated successfully, but these errors were encountered: