Hi,I am using Julia Version 0.3.0-prerelease+1102 (2014-01-21 04:16 UTC) Commit c43c3d1 (41 days old master).
When I call minimum on a sparse matrix, I get
ERROR: scalarmin not defined
For example
julia> P = spzeros(Float64, 10, 10)
10x10 sparse matrix with 0 Float64 nonzeros:
julia> for i = 1:10
P[i,i] = i
end
julia> minimum(P)
ERROR: scalarmin not defined
Is there a workaround to this?
Thanks,
Aditya
