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 was trying to give a motivating example in #408 and encountered this issue:
julia> m(z::Complex) = [z.re -z.im; z.im z.re] m (generic function with 1 method) julia> v = [1+2im]' 1×1 RowVector{Complex{Int64},ConjArray{Complex{Int64},1,Array{Complex{Int64},1}}}: 1-2im julia> (m.(v))[1] 2×2 Array{Int64,2}: 1 -2 2 1 julia> m(v[1]) 2×2 Array{Int64,2}: 1 2 -2 1
The text was updated successfully, but these errors were encountered:
Fix broadcast with RowVectors of matrices
34c9d0d
Fix #20979. Amusingly, this bug is a direct of `transpose` being recursive.
8284aff
Fix broadcast with RowVectors of matrices (#20980)
3777aab
Fix #20979. Amusingly, this bug is a direct result of `transpose` being recursive.
Fix broadcast with RowVectors of matrices (JuliaLang#20980)
17bee34
mbauman
Successfully merging a pull request may close this issue.
I was trying to give a motivating example in #408 and encountered this issue:
The text was updated successfully, but these errors were encountered: