ok, i guess performance is then improved.
however, the conversion between sparse matrix line and sparse vecteor is
not correct
julia> aa = sparse([10. 0 30.])
1x3 sparse matrix with 2 Float64 entries:
[1, 1] = 10.0
[1, 3] = 30.0
julia> full(aa[1,:])
3-element Array{Float64,1}:
10.0
30.0
0.0
the zeros coefficient has been misplaced in the sparse vector.
bests,
M.
Le samedi 14 novembre 2015 08:05:18 UTC+1, Tony Kelman a écrit :
>
> These are intended changes, and not specific to sparse matrices. See the
> NEWS.md file.