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
if maximum(tmp) succeeds when tmp::Array{Any}, shouldn't maximum(tmp,1) succeed as well?
julia> tmp = convert(Array{Any},rand(3,4)) 3x4 Array{Any,2}: 0.781922 0.765787 0.714231 0.787834 0.715081 0.118564 0.0907171 0.624957 0.884211 0.285455 0.217336 0.777541 julia> maximum(tmp) 0.8842111707356262 julia> maximum(tmp,1) ERROR: `zero` has no method matching zero(::Type{Any}) in maximum at reducedim.jl:230 julia> maximum(convert(Array{Float64},tmp),1) 1x4 Array{Float64,2}: 0.884211 0.765787 0.714231 0.787834 julia> VERSION v"0.4.0-dev+1993"
The text was updated successfully, but these errors were encountered:
same fundamental question/decision as #8319?
Sorry, something went wrong.
closing as a dup of 8319.
No branches or pull requests
if maximum(tmp) succeeds when tmp::Array{Any}, shouldn't maximum(tmp,1) succeed as well?
The text was updated successfully, but these errors were encountered: