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
I feel like this should probably also be a StructArray.
julia> s = StructArray{ComplexF64}((rand(2,2), rand(2,2))) 2×2 StructArray(::Array{Float64,2}, ::Array{Float64,2}) with eltype Complex{Float64}: 0.838311+0.103134im 0.687063+0.555663im 0.990479+0.706477im 0.934305+0.885454im julia> s .+ s 2×2 Array{Complex{Float64},2}: 1.67662+0.206268im 1.37413+1.11133im 1.98096+1.41295im 1.86861+1.7709im
The text was updated successfully, but these errors were encountered:
Make StructArrays broadcast aware
68f3ac7
Fixes JuliaArrays#89
7b3d131
Fixes #89
0c4adf6
Successfully merging a pull request may close this issue.
I feel like this should probably also be a StructArray.
The text was updated successfully, but these errors were encountered: