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
Is using an ArrayPartition within another ArrayPartition supported? I'm having the following problem:
ArrayPartition
julia> using StaticArrays, RecursiveArrayTools julia> x = ArrayPartition(ArrayPartition(@SMatrix [1.1 1.2; 1.3 1.4]), SVector(1.2)) ([1.1 1.2; 1.3 1.4], [1.2]) julia> y = 1.1 * x ([1.21, 1.43, 1.32, 1.54], [1.32]) julia> typeof(x.x[1]) ArrayPartition{Float64,Tuple{SArray{Tuple{2,2},Float64,2,4}}} julia> typeof(y.x[1]) Array{Float64,1}
Somehow the type of the underlying array is being changed. I would have expected that array type to remain the same.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Is using an
ArrayPartition
within anotherArrayPartition
supported? I'm having the following problem:Somehow the type of the underlying array is being changed. I would have expected that array type to remain the same.
The text was updated successfully, but these errors were encountered: